Protected
Sub
Page_Load(
ByVal
sender
As
Object
,
ByVal
e
As
System.EventArgs)
Handles
Me
.Load
If
Not
Page.IsPostBack
Then
ap.ResponseScripts.Add(
"radalert('Thank you for your registration.')"
)
End
If
End
Sub
Is it possible to call radalert using the code above in page_load?
The page has JS error.
If not, what is the correct way?
Thanks.