Speak.aspx
上传用户:balance_rz
上传日期:2020-04-18
资源大小:103k
文件大小:2k
源码类别:

SCSI/ASPI

开发平台:

Others

  1. <%@ Page Language="c#" Inherits="MyChatRoom.WebLayer.Speak" CodeFile="Speak.aspx.cs" %>
  2. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
  3. <html xmlns="http://www.w3.org/1999/xhtml" >
  4. <head>
  5.     <title>Speak</title>
  6.     <link href="../Styles/Style.css" type="text/css" rel="stylesheet" />
  7. </head>
  8. <body>
  9.     <form id="Form1" method="post" runat="server">
  10.         <asp:TextBox ID="TextBoxContent" Style="z-index: 101; left: 16px; position: absolute;
  11.             top: 16px" runat="server" TextMode="MultiLine" Height="64px" Width="416px" EnableViewState="False"></asp:TextBox>
  12.         <asp:Button ID="ButtonSpeak" Style="z-index: 102; left: 184px; position: absolute;
  13.             top: 96px" runat="server" Text="发言" Width="72px" OnClick="ButtonSpeak_Click"></asp:Button>
  14.         <asp:DropDownList ID="DropDownListEmotion" Style="z-index: 103; left: 88px; position: absolute;
  15.             top: 96px" runat="server">
  16.             <asp:ListItem Value="微笑着">微笑着</asp:ListItem>
  17.             <asp:ListItem Value="无奈地">无奈地</asp:ListItem>
  18.             <asp:ListItem Value="哭丧着脸">哭丧着脸</asp:ListItem>
  19.         </asp:DropDownList>
  20.         <asp:DropDownList ID="DropDownListColor" Style="z-index: 104; left: 24px; position: absolute;
  21.             top: 96px" runat="server">
  22.             <asp:ListItem Value="black" Selected="True">黑色</asp:ListItem>
  23.             <asp:ListItem Value="red">红色</asp:ListItem>
  24.             <asp:ListItem Value="blue">蓝色</asp:ListItem>
  25.             <asp:ListItem Value="green">绿色</asp:ListItem>
  26.         </asp:DropDownList>
  27.         <asp:Button ID="ButtonExit" Style="z-index: 105; left: 272px; position: absolute;
  28.             top: 96px" runat="server" Text="离开" Width="64px" OnClick="ButtonExit_Click"></asp:Button>
  29.     </form>
  30. </body>
  31. </html>