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.
50 lines
2.4 KiB
50 lines
2.4 KiB
<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/AppMaster.Master" Inherits="System.Web.Mvc.ViewPage<QMAPP.FJC.Web.Models.ExampleUserInfoModel>" %>
|
|
|
|
|
|
<asp:Content ID="Content1" ContentPlaceHolderID="TitleContent" runat="server">
|
|
单表编辑页面
|
|
|
|
</asp:Content>
|
|
|
|
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
|
|
<%=Html.QPEdit("送货单信息", string.IsNullOrEmpty(Model.UserID) ? QMFrameWork.WebUI.panelType.Add : QMFrameWork.WebUI.panelType.Update)%>
|
|
<div style="width: 157px; height: 169px; background-image: url('../Content/Img/editback.png'); background-repeat: no-repeat; position: absolute; right: 5px; bottom: 5px;border-width: 0px;">
|
|
|
|
</div>
|
|
<table id="editTable">
|
|
<tr>
|
|
<th align=right><%=Html.QV(p=>p.UserName) %></th><td><%=Html.QC(p=>p.UserName) %>
|
|
</td>
|
|
</tr>
|
|
<tr><th align=right><%=Html.QV(p=>p.UserDes) %></th><td><%=Html.QC(p => p.UserDes, new { @style = "text-align: right;" })%> </td></tr>
|
|
<tr><th align=right><%=Html.QV(p=>p.Sex) %></th><td><%=Html.QC(p=>p.Sex) %></td></tr>
|
|
<tr><th align=right><%=Html.QV(p=>p.OrganID) %></th><td><%=Html.QC(p=>p.OrganID) %></td></tr>
|
|
<tr><th align=right><%=Html.QV(p=>p.BirthDate) %></th><td><%=Html.QC(p => p.BirthDate)%></td></tr>
|
|
<tr><th align=right><%=Html.QV(p=>p.Age) %></th><td><%=Html.QNumberFor(p => p.Age)%></td></tr>
|
|
<tr><th align=right><%=Html.QV(p=>p.PostInfo) %></th><td><%=Html.QMyPerceptTextboxFor(p => p.PostInfo, "postinfo", "", null)%></td></tr>
|
|
<tr><th align=right><%=Html.QV(p=>p.Remark) %></th><td><%=Html.QC(p => p.Remark)%></td></tr>
|
|
</table>
|
|
<%=Html.HiddenFor(p=>p.UserID) %>
|
|
<%=Html.HiddenFor(p=>p.UpdateTime) %>
|
|
<%=Html.QPEnd() %>
|
|
</asp:Content>
|
|
<asp:Content ID="Content3" ContentPlaceHolderID="ToolContent" runat="server">
|
|
<table width="100%" cellpadding=0 cellspacing=0>
|
|
<tr>
|
|
<td>
|
|
<%=Html.QTButtonSave("Examples", "SingleTableSave", "return Save();")%>
|
|
<%=Html.QTButton("close", "SingleTableList","close","parent.closeAppWindow1();return false;", (s, f) => { return true; })%>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<script type="text/javascript">
|
|
//保存
|
|
function Save() {
|
|
if (isValidate()==false) {
|
|
return false;
|
|
}
|
|
submitByButton("SingleTableSave");
|
|
}
|
|
</script>
|
|
</asp:Content>
|
|
|