在asp.net上运行时显示对话框

时间:2013-07-26 15:03:45

标签: c# asp.net

嘿,我是编程新手,正在为我的大学工作在asp.net工作。我想问一下如何在运行时显示值

 public partial class test : System.Web.UI.Page
   {
    protected void Page_Load(object sender, EventArgs e)
     {
      for(int i=0;i<10;i++)
      {
       //required code here
      }
    }
  }

我希望此代码在对话框中显示0,当我按下输入时,显示1,2,...

这可能是一个愚蠢的问题,对不起它

我尝试使用Alert.Show();但它只显示最后一个值;我想要的是显示0,然后我点击确定显示1然后2等等

1 个答案:

答案 0 :(得分:1)

以下是一个例子:

C#

public void Message(string msg)
{
    ClientScript.RegisterStartupScript(Page, Page.GetType(), "msgid", "alert('" + msg + "')", true);
}

Message("Here comes the message");

VB.NET

Public Sub Message(msg as String)
    ClientScript.RegisterStartupScript(Page, Page.GetType(), "msgid", "alert('" & msg & "')", true)
End Sub

Message("Here comes the message")