@using WX.CRM.WebHelper; @{ ViewBag.Title = "Edit"; Layout = "~/Views/Shared/_Index_LayoutEdit.cshtml"; }
@Html.ToolButtonPlain("btnSave", "icon-save", "保存", false, "")
@using (Html.BeginForm("Create", "SharedCustomer", null, FormMethod.Post, new { Id = "CreateForm" })) { @Html.ValidationSummary(true)
客户ID:@Html.TextBox("resid", Request.QueryString["resid"], new { style = "width:150px;" })
工    号:@Html.TextBox("eid", string.Empty, new { style = "width:150px;" })
}