</html>
后台代码
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace 综合实例
{
public partial class Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
Application.Set("Msg", "" + Application["Msg"] + "<br><font color=red size=4>" + Request.UserHostName + "进入聊天室</font>[<font size=2>" + DateTime.Now.ToString() + "</font>]");
}
}
protected void Button1_Click(object sender, EventArgs e)
{
Application.Set("Msg", Application["Msg"] + "<br><font color=" + DropDownList1.Text + " size=4>" + Request.UserHostName + "说:" + TextBox1.Text + "</font> [<font size=2>" + DateTime.Now.ToString() + "</font>]");
}
protected void Timer1_Tick(object sender, EventArgs e)
{
try
{
Label1.Text = Application["Msg"].ToString();
}
catch (Exception ex)
{
Response.Write(ex.Message);
}
}
}
}