40 lines
1.2 KiB
Plaintext
40 lines
1.2 KiB
Plaintext
@model dccdc.Models.EnterpriceInfoMaintainModel
|
|
@{
|
|
ViewBag.Title = "维护账号";
|
|
}
|
|
@using (Ajax.BeginForm("savezhanghao", new AjaxOptions { HttpMethod = "Post", OnSuccess = "success" }))
|
|
{
|
|
<table class="t1" style="width:30%">
|
|
<tr>
|
|
<td class="ltd" width="100px">用户名:</td>
|
|
<td class="rtd">@Html.TextBoxFor(t => t.loginname, new { @class = "l-text" })</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="ltd" width="100px">密码:</td>
|
|
<td class="rtd">@Html.TextBoxFor(t => t.loginpwd, new { @class = "l-text" })</td>
|
|
</tr>
|
|
|
|
|
|
<tr>
|
|
<td>@Html.HiddenFor(t => t.id)</td>
|
|
<td class="rtd" width="100px"><input id="save" type="submit" class="l-button" value="保存"></td>
|
|
</tr>
|
|
</table>
|
|
}
|
|
|
|
@section scripts{
|
|
<script type="text/javascript">
|
|
|
|
function success(data) {
|
|
if (data.State == "1") {
|
|
$.ligerDialog.alert(data.Message,
|
|
function () {
|
|
window.parent.init();
|
|
});
|
|
} else {
|
|
$.ligerDialog.alert(data.Message);
|
|
}
|
|
}
|
|
</script>
|
|
}
|