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.x.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);}}}}