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

📄 discuss_replypost.ascx

📁 一个ASP.NET下的中文内容管理和社区系统
💻 ASCX
字号:
<%@ Control %>
<%@ 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">
    &nbsp;
    </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 + -