应用dot net的ajax举例-简单的对话代码

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="综合实例.Default" %>







   


   

     
   

   
   
       
       
       
     
   

   
     
   

   

     输入聊天信息: 选择字体颜色:
     
        红色
        绿色
        黄色
     

   
   

后台代码

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"] + "
" + Request.UserHostName + "进入聊天室[" + DateTime.Now.ToString() + "]");
            }
        }


        protected void Button1_Click(object sender, EventArgs e)
        {
            Application.Set("Msg", Application["Msg"] + "
" + Request.UserHostName + "说:" + TextBox1.Text + " [" + DateTime.Now.ToString() + "]"); 
        }
        protected void Timer1_Tick(object sender, EventArgs e)
        {
            try
            {
                Label1.Text = Application["Msg"].ToString();
            }
            catch (Exception ex)
            {
                Response.Write(ex.Message);
            }
        }
    }
}

你可能感兴趣的:(.net)