public class Content : System.Web.UI.Page{PRivate void Page_Load(object sender, System.EventArgs e){session.Timeout = 60;Response.Write("欢迎 . . .<br> ");Response.Flush();application[Session.SessionID] = Response;System.Threading.Thread.Sleep(System.Threading.Timeout.Infinite);}}// Send.aspx.cs //////////////////////////////////////////////////////////public class Send : System.Web.UI.Page{protected System.Web.UI.WebControls.Button ButtonSend;protected System.Web.UI.WebControls.TextBox TextBox1;private void ButtonSend_Click(object sender, System.EventArgs e){foreach(string name in Application.AllKeys){HttpResponse Response = Application[name] as HttpResponse;if(Response!=null && Response.IsClientConnected){Response.Write(TextBox1.Text + "<br> ");Response.Flush();}else{Application.Remove(name);}}}}
新闻热点
疑难解答