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);}}}}
新聞熱點(diǎn)
疑難解答
圖片精選