<%@ Page language="c#" Codebehind="4-12.aspx.cs" AutoEventWireup="false" Inherits="study._4_12" %> <% string mywords=Request["mywords"]; Application.Lock(); Application["chat_content"] = Application["chat_content"]+"<br>"+mywords; Response.Write(Application["chat_content"]); Application.UnLock(); %> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > <HTML> <HEAD> <title>聊天室</title> <meta name="GENERATOR" Content="Microsoft Visual Studio .NET 7.1"> <meta name="CODE_LANGUAGE" Content="C#"> <meta name="vs_defaultClientScript" content="JavaScript"> <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5"> </HEAD> <body> <form id="Form1" Action="4-12.aspx" method="post"> <input type="text" size="30" name="mywords" value ="我在聊天室!"> <input type="submit" value="提交"> </form> </body> </HTML>  |