如何在我的asp.net页面中显示messageBox? (我用c#写) 我需要写哪些线?
答案 0 :(得分:3)
你可以尝试这样的事情。
protected void Page_Load(object sender, EventArgs e)
{
Page.ClientScript.RegisterClientScriptBlock(this.GetType(), "test", "<script>alert('hi');</script>");
}
答案 1 :(得分:1)
没有像消息框中的winforms那样直接控制。 您可以下载ASP.NET工具包并使用ModalPopupExtender,然后创建自己的MessageBox。
或..您可以在ASP.NET页面中使用javascript来使用Javascript显示警报。
答案 2 :(得分:1)
您必须使用JavaScript来执行此操作,方法是使用Page.ClientScript.RegisterStartupScript
或RegisterClientScriptBlock
来调用客户端alert("this is my messagebox");
JS方法。
您还可以使用AJAX控件工具包ModalPopupExtender或JQuery的对话框组件。
HTH。
答案 3 :(得分:0)
使用javascript
Button1.Attributes.Add("onclick","alert('Hello World!!!');");
答案 4 :(得分:0)
在您选择的事件上写下以下内容:
Interaction.MsgBox("Your Text Goes Here");