📄 post.aspx
字号:
<%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="post.aspx.cs" Inherits="post" Title="Untitled Page" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<table border="0" style="width: 633px">
<tr>
<td align="center" colspan="2" style="font-weight: bold; font-size: 15px; color: white;
height: 22px; background-color: #a43737">
我的会议-会议留言</td>
</tr>
<tr>
<td align="right" style="width: 251px">
收件人:</td>
<td align="left">
<asp:TextBox ID="txttouser" runat="server" ReadOnly="True" Width="150px"></asp:TextBox></td>
</tr>
<tr style="color: #000000">
<td align="right" style="width: 251px; height: 30px">
发件人:</td>
<td align="left" style="height: 30px">
<asp:TextBox ID="txtfromuser" runat="server" ReadOnly="True" Width="150px"></asp:TextBox></td>
</tr>
<tr>
<td align="right" style="width: 251px; height: 30px">
内容:</td>
<td align="left" style="height: 30px">
<asp:TextBox ID="txtcontent" runat="server" Height="219px" TextMode="MultiLine" Width="283px"></asp:TextBox><asp:RequiredFieldValidator
ID="RequiredFieldValidator3" runat="server" ControlToValidate="txtcontent" Display="Dynamic"
ErrorMessage="RequiredFieldValidator">不能为空</asp:RequiredFieldValidator>
<asp:RegularExpressionValidator ID="RegularExpressionValidator1" runat="server" ControlToValidate="txtcontent"
Display="Dynamic" ErrorMessage="RegularExpressionValidator" ValidationExpression=".{1,100}">不能超过100个字符</asp:RegularExpressionValidator>
<asp:Label ID="Label1" runat="server" ForeColor="Red" Text="该留言内容已经存在了" Visible="False"></asp:Label></td>
</tr>
<tr>
<td align="center" colspan="2" style="height: 22px">
<asp:Button ID="Button2" runat="server" Height="20px" OnClick="Button2_Click" Text="发 表"
Width="48px" />
<asp:Button ID="Button1" runat="server" CausesValidation="False" Height="20px" OnClick="Button1_Click"
Text="清 空" Width="48px" /></td>
</tr>
<tr>
<td align="center" colspan="2">
<asp:Label ID="Labmessage" runat="server" Style="font-weight: bold; color: red"></asp:Label>
<asp:LinkButton ID="LinkButton1" runat="server" OnClick="LinkButton1_Click" Visible="False">返回看看</asp:LinkButton></td>
</tr>
</table>
</asp:Content>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -