在使用了微软ajax的页面中弹出提示框的方法...
时间:2010-08-19 来源:wjbych
VB2010+.net4.0
第一步:写一个函数,方便调用
Public Function MsgBox(ByVal _Msg As String) As String
Dim StrScript As String
StrScript = "alert('" & _Msg & "');"
Return StrScript
End Function
第二部:在程序使用中弹出提示框
info = "用户名或密码没有输入!"
ScriptManager.RegisterStartupScript(UpdatePanel1, Me.GetType(), "", MsgBox(info), True)
Exit Sub
UpdatePanel1是UpdatePanel控件的ID,一般没人更改这个ID的,试试吧,可以在程序的任何地方弹出提示框
相关阅读 更多 +