19 lines
474 B
Plaintext
19 lines
474 B
Plaintext
|
|
@{
|
|
ViewBag.Title = "success";
|
|
}
|
|
@section scripts{
|
|
<script type="text/javascript">
|
|
if (navigator.userAgent.indexOf("Firefox") != -1 || navigator.userAgent.indexOf("Chrome") != -1) {
|
|
window.location.href = "about:blank";
|
|
window.close();
|
|
} else {
|
|
window.opener = null;
|
|
window.open("", "_self");
|
|
window.close();
|
|
}
|
|
</script>
|
|
}
|
|
<h2 style="padding:10px">操作成功</h2>
|
|
|