Please help me i have this code
Dim message As String = "Please enter a Complete Technician Name!"
Dim sb As New System.Text.StringBuilder()
sb.Append("<script type = 'text/javascript'>")
sb.Append("window.onload=function(){")
sb.Append("alert('")
sb.Append(message)
sb.Append("')};")
sb.Append("</script>")
ClientScript.RegisterClientScriptBlock(Me.GetType(), "alert", sb.ToString())
Actually, it is just a Javascript Popup message.
what i need to do is catch the "Clicking of OK Button" then put some code under it.
please help me.
thnx
...
Go to the complete details ...