当前位置: 代码迷 >> ASP.NET >> 怎么动态的添加 image 控件
  详细解决方案

怎么动态的添加 image 控件

热度:1714   发布时间:2013-02-26 00:00:00.0
如何动态的添加 image 控件
网页   中     要求   将   image   控件   动态的添加   到一个table   控件
但是网页中好像不能动态的创建   image   控件
  我用这个语句
  Dim   imgyonex   As   New   Image
  提示错误:
    不能用new   创建   must   inherit   的控件


------解决方案--------------------------------------------------------
up
------解决方案--------------------------------------------------------
System.Web.UI.WebControls.Image a=NEW System.Web.UI.WebControls.Image()

------解决方案--------------------------------------------------------
<script type= "text/javascript ">
function a()
{
var a=document.createElement( " <img src= '1.jpg '> ");
var b=document.getElementById( 'div1 ');
document.getElementById( 'div1 ').appendChild(a);
}
</script>
这个是个javascript的,如果是cs文件创建如楼上创建就可以了
最后用div1.controls.add()就可以了
  相关解决方案