天津投入产出系统后端
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.

88 lines
3.1 KiB

<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/AppMaster.Master"
Inherits="System.Web.Mvc.ViewPage<QMAPP.MD.Web.Models.CorpModel>" %>
<asp:Content ID="Content1" ContentPlaceHolderID="TitleContent" runat="server">
公司信息编辑
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
<%=Html.QPEdit("信息", string.IsNullOrEmpty(Model.PID) ? QMFrameWork.WebUI.panelType.Add : QMFrameWork.WebUI.panelType.Update)%>
<table id="editTable" cellpadding="0" cellspacing="0">
<tr>
<td>
<table>
<tr>
<th align="right">
<%=Html.QV(p => p.CORP_CODE)%>
</th>
<td>
<%=Html.QC(p => p.CORP_CODE)%>
</td>
<th align="right">
<%=Html.QV(p => p.CORP_SHORT)%>
</th>
<td>
<%=Html.QC(p => p.CORP_SHORT)%>
</td>
</tr>
<tr>
<th align="right">
<%=Html.QV(p => p.Siteid)%>
</th>
<td>
<%=Html.QC(p => p.Siteid)%>
</td>
<th align="right">
<%=Html.QV(p => p.Orgid)%>
</th>
<td>
<%=Html.QC(p => p.Orgid)%>
</td>
</tr>
<tr>
<th align="right">
<%=Html.QV(p => p.CORP_NAME)%>
</th>
<td colspan="3">
<%=Html.QC(p => p.CORP_NAME)%>
</td>
</tr>
<tr>
<th align="right">
<%=Html.QV(p=>p.REMARK) %>
</th>
<td colspan="3">
<%=Html.QC(p => p.REMARK)%>
</td>
</tr>
</table>
</td>
</tr>
</table>
<%=Html.HiddenFor(p=>p.PID) %>
<%=Html.HiddenFor(p=>p.CREATEDATE) %>
<%=Html.HiddenFor(p=>p.CREATEUSER) %>
<%=Html.HiddenFor(p=>p.UPDATEDATE)%>
<%=Html.HiddenFor(p=>p.UPDATEUSER) %>
<%=Html.HiddenFor(p =>p.CORP_CODE_OLD)%>
<%=Html.QPEnd() %>
</asp:Content>
<asp:Content ID="Content3" ContentPlaceHolderID="ToolContent" runat="server">
<table width="100%" cellpadding="0" cellspacing="0">
<tr>
<td>
<%=Html.QTButtonSave("User", "Save", "return Save();")%>
</td>
</tr>
</table>
<script type="text/javascript">
function Save() {
if (isValidate() == false) {
return false;
}
submitByButton("Save");
}
</script>
</asp:Content>