Hi,
I am developing one web application. I have implemented one master page. I want to display RadAlert in master page. If i add following code. It is throwing error like e and sys is not derfined. How can I display RadAlert in master page.
Thanks in advance,
Medac
I am developing one web application. I have implemented one master page. I want to display RadAlert in master page. If i add following code. It is throwing error like e and sys is not derfined. How can I display RadAlert in master page.
Dim
someScript As String = "alertMe"
If (Not Page.ClientScript.IsStartupScriptRegistered(Me.GetType(), someScript)) Then
Page.ClientScript.RegisterStartupScript(
Me.GetType(), someScript, "alert('I was called from Content page!')", True)
End If
Thanks in advance,
Medac