2

嘿,我是编程新手,我正在为我的大学工作在 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,依此类推

4

1 回答 1

1

Here is an example:

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")
于 2013-07-26T16:54:29.410 回答