- Home
·
- Internet/HTML
·
- Msgbox function for ASP.Net Call this function from the server side, and a msgbox will appear on th
Msgbox function for ASP.Net Call this function from the server side, and a msgbox will appear on th
Msgbox function for ASP.Net Call this function from the server side, and a msgbox will appear on the client browser. As a bonus, the msgbox
Rate Msgbox function for ASP.Net Call this function from the server side, and a msgbox will appear on th
(1(1 Vote))
Dim sb As New StringBuilder()
Dim oFormObject As System.Web.UI.Control
sMsg = sMsg.Replace("'", "\'")
sMsg = sMsg.Replace(Chr(34), "\" & Chr(34))
sMsg = sMsg.Replace(vbCrLf, "\n")
sMsg = "<script language=javascript>alert(""" & sMsg & """)</script>"
sb = New StringBuilder()
sb.Append(sMsg)
For Each oFormObject In Me.Controls
If TypeOf oFormObject Is HtmlForm Then
Exit For
End If
Next
' Add the javascript after the form object so that the
' message doesn't appear on a blank screen.
oFormObject.Controls.AddAt(oFormObject.Controls.Count, New LiteralControl(sb.ToString()))
end sub
Msgbox function for ASP.Net Call this function from the server side, and a msgbox will appear on th Comments
No comments yet — be the first to post one!
Post a Comment