protected void Page_Load(object sender, EventArgs e)
{
Type type = GetType();
const string scriptName = "alertPopup";
if (!ClientScript.IsStartupScriptRegistered(type,scriptName))
ClientScript.RegisterStartupScript(type, scriptName, "alert('Hello from content page!')", true);
}
Show Comments (17)
Loading Comments. Please Wait...