本文介绍了内部html的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述


我使用id和runat服务器创建了一个div标签,当使用div的内部html从服务器端(c#)插入代码时,将插入代码,但是未显示指定的图像.可能是什么问题?


例如

HTML代码:
----------

Hi,
I have created a div tag with id and runat server, when the code is inserted from the server side(c#) using inner html of div, the code is inserted, but the image specified is not shown. what could be the problem?


ex.

HTML Code:
----------

;

;

;

C#代码
-------

受保护的void Page_Load(对象发送者,EventArgs e)
{
如果(!IsPostBack)
{
GenerateHTMLCode();

}
}

公共无效的GenerateHTMLCode()
{
content_container.InnerHtml ="

;

C# code
-------

protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
GenerateHTMLCode();

}
}

public void GenerateHTMLCode()
{
content_container.InnerHtml = "

" +
"

" +
"这是xyz!

" +
"

" +
" Hi This is xyz!

";


}

";


}

推荐答案


这篇关于内部html的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-27 07:33