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

本文关键字:运行时 显示 对话框 asp net | 更新日期: 2023-09-27 18:25:00

嘿,我是编程新手,正在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,然后点击ok显示1,然后在上显示2,以此类推

下面是一个例子:

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")

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