INFO message box in vb.net - server side - web application created with Visual studio
Following code displays a message from server after page postback . Message appears like an alert, with his yellow triangle and the exclamation mark.
BUT I need to obtain a simple INFO MESSAGE, with OK button, without exclamation mark and without point of demand: but I CAN NOT !!!
If I use window.confirm instaed window.alert, it appears a point of demand.
Dim lbl As New System.Web.UI.WebControls.Label
lbl.Text = "<script language='javascript'>" & Environment.NewLine _
& "window.alert(" & "'" & strMsg & "'" & ")</script>"
Page.Controls.Add(lbl)
Can anyone help me? How ca I display a simply info message box?
Thanks! Tappat