天津投入产出系统后端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

46 lines
1.5 KiB

<%@ 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>