Hey
ASP.NET 2.0
In my webpage (.aspx) I have this tag:
<div id="test" class="pageTitl e">Hello World</div>
I'm wondering how I in Page_Load event can change the "Hello World" text to
something else...?
First I need to get a reference to this div tag, so I'm trying this code,
I'm NOT sure it works:
System.Web.UI.H tmlControls tttt = (System.Web.UI. HtmlControls)
System.Web.UI.H tmlControls.Htm lGenericControl .cell.FindContr ol("test");
Any suggestions?
Jeff
ASP.NET 2.0
In my webpage (.aspx) I have this tag:
<div id="test" class="pageTitl e">Hello World</div>
I'm wondering how I in Page_Load event can change the "Hello World" text to
something else...?
First I need to get a reference to this div tag, so I'm trying this code,
I'm NOT sure it works:
System.Web.UI.H tmlControls tttt = (System.Web.UI. HtmlControls)
System.Web.UI.H tmlControls.Htm lGenericControl .cell.FindContr ol("test");
Any suggestions?
Jeff
Comment