F
Frank Nero
In my ASP HTML code I have:
<SCRIPT language=JavaScript>
<!--
function DispTitle()
{
document.title = "New Title";
...
document.getElememtByID("par1").innerHTML = "New Text of the
Paragraph";
}
//-->
</SCRIPT>
How to acomplish the same effects inside C# code-behind function?
Does System.Web.UI
age class can do that?
How to access any element of the page (document) from C# ?
Thank you in advance,
Frank.
<SCRIPT language=JavaScript>
<!--
function DispTitle()
{
document.title = "New Title";
...
document.getElememtByID("par1").innerHTML = "New Text of the
Paragraph";
}
//-->
</SCRIPT>
How to acomplish the same effects inside C# code-behind function?
Does System.Web.UI

How to access any element of the page (document) from C# ?
Thank you in advance,
Frank.