How can I use InnerHtml within ASP.NET 3.5?

masoumeh

New member
I use this tag:
<div id="Insert" runat="server"></div>
and then in cs code I write a code like this
string str;
str = "<h1>??? ??????? ?? ?????? ????? ??</h1>";
Insert.InnerHtml = str;
but the string dose not show on the broswer, what's the error?
 
Back
Top