<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/AppMaster.Master"
    Inherits="System.Web.Mvc.ViewPage<QMAPP.Web.Models.Sys.NoticeBrowseModel>" %>

<asp:Content ID="Content1" ContentPlaceHolderID="TitleContent" runat="server">
    回复
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
    <table align="center" border="0">
        <tr>
            <th valign="top">
                <%=Html.QV(p => p.NOTICECONTEXT)%>
            </th>
            <td valign="top">
                <%=Html.QC(p => p.NOTICECONTEXT)%>
            </td>
        </tr>
        <tr>
            <th valign="top">
                <%=Html.QV(p => p.REPLYCONTENT)%>
            </th>
            <td valign="top">
                <%=Html.QC(p => p.REPLYCONTENT)%>
            </td>
        </tr>
    </table>
</asp:Content>
<asp:Content ID="Content3" ContentPlaceHolderID="ToolContent" runat="server">
 <table width="100%" cellpadding="0" cellspacing="0">
        <tr>
            <td>
                <%=Html.QTButtonSave("Notice", "NoticeSave", "Save()")%>
                <%=Html.QTButtonBack("close", "UserList", "parent.closeAppWindow1();return false;")%>
            </td>
        </tr>
    </table>
     <script type="text/javascript">
         //保存
         function Save() {
             //校验基本信息合法性
             if (isValidate() == false) {
                 return false;
             }
             submitByButton("NoticeSave");
         }
    </script>
</asp:Content>