⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 speak.aspx

📁 使用C#开发的ASP.NET应用程序。实现三层架构的多用户聊天室的实现。 主要功能:1、用户管理
💻 ASPX
字号:
<%@ Page language="c#" Inherits="MyChatRoom.WebLayer.Speak" CodeFile="Speak.aspx.cs" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
	<HEAD>
		<title>Speak</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">
		<LINK href="Styles/Style.css" type="text/css" rel="stylesheet">
	</HEAD>
	<body>
		<form id="Form1" method="post" runat="server">
			<asp:TextBox id="TextBoxContent" style="Z-INDEX: 101; LEFT: 16px; POSITION: absolute; TOP: 16px"
				runat="server" TextMode="MultiLine" Height="64px" Width="416px" EnableViewState="False"></asp:TextBox>
			<asp:Button id="ButtonSpeak" style="Z-INDEX: 102; LEFT: 184px; POSITION: absolute; TOP: 96px"
				runat="server" Text="发言" Width="72px" onclick="ButtonSpeak_Click"></asp:Button>
			<asp:DropDownList id="DropDownListEmotion" style="Z-INDEX: 103; LEFT: 88px; POSITION: absolute; TOP: 96px"
				runat="server">
				<asp:ListItem Value="微笑着">微笑着</asp:ListItem>
				<asp:ListItem Value="无奈地">无奈地</asp:ListItem>
				<asp:ListItem Value="哭丧着脸">哭丧着脸</asp:ListItem>
			</asp:DropDownList>
			<asp:DropDownList id="DropDownListColor" style="Z-INDEX: 104; LEFT: 24px; POSITION: absolute; TOP: 96px"
				runat="server">
				<asp:ListItem Value="black" Selected="True">黑色</asp:ListItem>
				<asp:ListItem Value="red">红色</asp:ListItem>
				<asp:ListItem Value="blue">蓝色</asp:ListItem>
				<asp:ListItem Value="green">绿色</asp:ListItem>
			</asp:DropDownList>
			<asp:Button id="ButtonExit" style="Z-INDEX: 105; LEFT: 272px; POSITION: absolute; TOP: 96px"
				runat="server" Text="离开" Width="64px" onclick="ButtonExit_Click"></asp:Button>
		</form>
	</body>
</HTML>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -