?? discuss_replypost.ascx
字號:
<%@ Control Language="C#" %>
<%@ Register TagPrefix="community" Namespace="ASPNET.StarterKit.Communities" Assembly="ASPNET.StarterKit.Communities" %>
<asp:Panel id="pnlForm" Runat="Server">
<table width="100%" class="discussTable" cellpadding="0" cellspacing="1">
<tr>
<th align="left">
Reply to an Existing Message
</th>
</tr>
<tr>
<td valign="top" class="discussCell">
<table cellpadding="4">
<tr>
<td align="right">
<b>Posted By:</b>
</td>
<td>
<asp:Label id="lblPostAuthor" runat="Server"/>
on <asp:Label id="lblPostDate" runat="Server" />
</td>
</tr>
<tr>
<td align="right">
<b>Subject:</b>
</td>
<td>
<community:Title id="lblPostTitle" runat="Server"/>
</td>
</tr>
<tr>
<td align="right" valign="top">
<b>Message:</b>
</td>
<td>
<community:PostBodyText id="lblPostBodyText" runat="Server"/>
</td>
</tr>
</table>
</tr>
<tr>
<td class="discussCellHiLite">
</td>
</tr>
<tr>
<td class="discussCell">
<table>
<tr>
<td align="right">
<b>Author:</b>
</td>
<td colspan="2">
<asp:Label id="lblUsername" runat="Server"/>
</td>
</tr>
<tr>
<td align="right">
<b>Subject:</b>
</td>
<td colspan="2">
<asp:TextBox id="txtTitle" Columns="40" CssClass="Form_Field" Runat="Server" />
<asp:RequiredFieldValidator ControlToValidate="txtTitle" Text="(required)" Runat="Server"/>
</td>
</tr>
<tr>
<td align="right" valign="top">
<b>Message:</b>
</td>
<td>
<community:CommentHtmlTextBox id="txtBody" Columns="50" Rows="10" Runat="Server" />
</td>
<td valign="top">
<asp:RequiredFieldValidator ControlToValidate="txtBody" Text="(required)" Runat="Server"/>
</td>
</tr>
<tr>
<td colspan="2" align="right">
<asp:Button id="btnPreview" Text="Preview" CssClass="Form_Button" Runat="Server" />
<asp:Button id="btnAdd" Text="Submit" CssClass="Form_Button" Runat="Server" />
</td>
</tr>
</table>
</td>
</tr>
</table>
</asp:Panel>
<asp:Panel id="pnlPreview" Runat="Server">
<table width="100%" class="discussTable" cellpadding="0" cellspacing="0" border="0">
<tr>
<th align="left">
Preview Message
</th>
</tr>
<tr>
<td valign="top" class="discussCell">
<table width="100%" border="0" cellpadding="4" cellspacing="0" border="0">
<tr>
<td class="discussCellHilite">
<b><community:Title id="lblPreviewTitle" runat="Server" /></b>
</td>
</tr>
<tr>
<td class="discussCell">
<community:CommentText id="lblPreviewBody" runat="Server" />
</td>
</tr>
<tr>
<td>
<asp:Button id="btnContinue" Text="Continue" CssClass="Form_Button" Runat="Server" />
</td>
</tr>
</table>
</td>
</tr>
</table>
</asp:Panel>
</asp:Panel>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -