我的aspx页面上的一个按钮点击事件 Button1_Click 中执行很长时间
protected void Button1_Click(object sender, System.EventArgs e)
{
int i = 1000;
while(i--)
{
// 我这里想更新一下aspx页面。可以吗??
}
}
------解决方案--------------------Response.Write( "AA ");
Response.Flush();
------解决方案--------------------非常 负责的告诉你 你的要求(在同一个页面中只更新一个服务器控件)是
不能实现的
------解决方案--------------------我想能不能实时更新这个页面上的一个 label控件??
用Ajax
------解决方案--------------------就是Atlas