Hello,
I want to give alert on click of button my codes is
Protected Sub BTN_SAVE_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles BTN_SAVE.Click
Response.Write("<script>alert('hello')</script>")
End Sub
But after clicking it is giving alert message. why?
Alok Shrivastava