asp.net 中的消息框
我需要在 asp.net 中一个简单的消息框,我尝试了以下代码。
Me.Page.ClientScript.RegisterStartupScript(Me.GetType(), "clientScript","<script>javascript:alert('Guest already associated with
another event');</script>")
但我没有运气。实际上我有一个位于更新面板中的下拉列表,它应该通过消息框抛出错误消息。我不知道为什么 javascript 不工作。有没有其他方法可以在 MessageBox 中显示简单的错误消息。
I need a simple messagebox in asp.net, I tried the following code.
Me.Page.ClientScript.RegisterStartupScript(Me.GetType(), "clientScript","<script>javascript:alert('Guest already associated with
another event');</script>")
but I had no luck. Actually I have a dropdownlist which is in a updatepanel it should throw an error message via a MessageBox. I don't know why javascript not working. Is there any other way by which we could show an simple error message in MessageBox.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
尝试:
try:
请参阅此用户控件,它将对您有所帮助
MessageBox 用户控件ASP.net
See this user control which will help you
MessageBox Usercontrol with ASP.net
使用这种简单的方法
,并在您的 aspx 文件中使用此代码来提醒消息
use this simple way
and in your aspx file use this code to alert a message
更简单:
或者:
0是按钮的数量(0是1,1是2...)
Easier:
Or:
0 is the number of buttons (0 is 1, 1 is 2...)