J
Jeff
Hey
ASP.NET 2.0
In my webpage (.aspx) I have this tag:
<div id="test" class="pageTitle">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.HtmlControls tttt = (System.Web.UI.HtmlControls)
System.Web.UI.HtmlControls.HtmlGenericControl.cell.FindControl("test");
Any suggestions?
Jeff
ASP.NET 2.0
In my webpage (.aspx) I have this tag:
<div id="test" class="pageTitle">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.HtmlControls tttt = (System.Web.UI.HtmlControls)
System.Web.UI.HtmlControls.HtmlGenericControl.cell.FindControl("test");
Any suggestions?
Jeff