You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
2.1 KiB
Plaintext
42 lines
2.1 KiB
Plaintext
2 years ago
|
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="MessageSetting.aspx.cs" Inherits="DSCustomer.Message.MessageSetting" %>
|
||
|
|
||
|
<!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>
|
||
|
<style type="text/css">
|
||
|
.txtTab{border:1px solid #A0A0A4; border-color:#6699CC;}
|
||
|
.btn{
|
||
|
width:95px;
|
||
|
BORDER-RIGHT: #2C59AA 1px solid;
|
||
|
PADDING-RIGHT: 2px; BORDER-TOP: #2C59AA 1px solid;
|
||
|
PADDING-LEFT: 2px; FONT-SIZE: 12px; FILTER: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr=#ffffff, EndColorStr=#C3DAF5);
|
||
|
BORDER-LEFT: #2C59AA 1px solid; CURSOR: hand; COLOR: black; PADDING-TOP: 2px;
|
||
|
BORDER-BOTTOM: #2C59AA 1px solid
|
||
|
}
|
||
|
</style>
|
||
|
<script src="../js/json2.js" type="text/javascript"></script>
|
||
|
<script src="../js/dhtmlxcommon.js" type="text/javascript"></script>
|
||
|
<script src="../js/messagesetting.js" type="text/javascript"></script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div style="width:100%;height:17px;font-size:12px; padding-top:3px;">
|
||
|
<div>设置间隔时间</div>
|
||
|
</div>
|
||
|
<div style="width:100%;height:20px;font-size:12px;">
|
||
|
<div style="float:left;"><input type="checkbox" id="ck_interval" onclick="checkInterval('ck_interval')" runat="server"/></div>
|
||
|
<div style="float:left;height:16px;padding-top:4px;padding-left:5px;">消息提醒间隔时间</div>
|
||
|
<div style="float:left;padding-left:5px;"><input type="text" id="txt_interval" class="txtTab" style="width:60px;" runat="server"/></div>
|
||
|
<div style="float:left;height:16px;padding-top:4px;padding-left:5px;">分钟</div>
|
||
|
</div>
|
||
|
<div style="padding-top:10px; padding-left:20px;">
|
||
|
<input type="button" id="btn_enter" value="保存" class="btn" onclick="saveSetting()" runat="server"/>
|
||
|
</div>
|
||
|
<form id="form1" runat="server">
|
||
|
<input type="hidden" id="h_userid" runat="server"/>
|
||
|
<input type="hidden" id="h_interval" runat="server" />
|
||
|
</form>
|
||
|
</body>
|
||
|
</html>
|