52 lines
1.5 KiB
Plaintext
52 lines
1.5 KiB
Plaintext
|
|
@model dccdc.Models.Sz_county
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
@section scripts{
|
|
<script type="text/javascript">
|
|
function success(data) {
|
|
if (data.State == "1") {
|
|
$.ligerDialog.alert(data.Message,
|
|
function() {
|
|
window.parent.init();
|
|
});
|
|
}
|
|
}
|
|
</script>
|
|
}
|
|
<meta name="viewport" content="width=device-width" />
|
|
<title></title>
|
|
</head>
|
|
<body>
|
|
<div id="edit">
|
|
@using (Ajax.BeginForm("EditSzCounty", new AjaxOptions { HttpMethod = "Post", OnSuccess = "success" }))
|
|
{
|
|
|
|
<table class="t1" style="width: 100%">
|
|
|
|
<tr>
|
|
<td class='ltd' width='100px'>参数:</td>
|
|
<td class='rtd'>@Html.TextBoxFor(m => m.countyCode)</td>
|
|
</tr>
|
|
<tr>
|
|
<td class='ltd' width='100px'>参数:</td>
|
|
<td class='rtd'>@Html.TextBoxFor(m => m.countyName)</td>
|
|
</tr>
|
|
<tr>
|
|
<td class='ltd' width='100px'>参数:</td>
|
|
<td class='rtd'>@Html.TextBoxFor(m => m.cityCode)</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td colspan="2">
|
|
<div align="center">
|
|
<input type="submit" id="submitid" class="l-button" value="保存" />
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
}
|
|
</div>
|
|
</body>
|
|
</html> |