<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="RecoverySysInquiryData.aspx.cs" Inherits="CY.WebForm.Pages.sysInquiry.RecoverySysInquiryData" %>
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
<head runat="server">
|
<title>恢复询价参数数据</title>
|
<uc:CMSHead ID="CMSHead1" runat="server" />
|
<script type="text/javascript">
|
function Confirm() {
|
var isCanRecovery = false;
|
isCanRecovery = window.confirm("如果恢复,您之前设置的所有询价参数都将失效,确认恢复?");
|
return isCanRecovery;
|
}
|
</script>
|
</head>
|
<body>
|
<form id="form1" runat="server">
|
<div id="scrollContent" style="width:600px; margin:0px auto">
|
<table class="tableStyle">
|
<tr>
|
<td align="center"><asp:CheckBox ID="cbkIsAllRecovery" Text="是否所有客户都恢复到系统询价参数设置" runat="server" Checked="true"/></td>
|
</tr>
|
<tr align="center">
|
<td><asp:Button ID="btnRecovery" Text="恢复系统询价参数设置" runat="server" OnClientClick="return Confirm()" OnClick="btnRecovery_click"/></td>
|
</tr>
|
</table>
|
</div>
|
</form>
|
</body>
|
</html>
|