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.
300 lines
13 KiB
Plaintext
300 lines
13 KiB
Plaintext
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="CrmProxyMailInfo.aspx.cs" Inherits="DSWeb.PriceCarrier.CrmProxyMailInfo" %>
|
|
|
|
<!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 id="Head1" runat="server">
|
|
<title>代理邮件信息</title>
|
|
<link href="../theme/tabinfo.css" type="text/css" rel="stylesheet" />
|
|
<script language="javascript" type="text/javascript" src="../js/date/jsDateFormat.js"></script>
|
|
<script src="../js/m97date/wdatepicker.js" type="text/javascript"></script>
|
|
<link rel="STYLESHEET" type="text/css" href="../theme/page.css"/>
|
|
<link rel="STYLESHEET" type="text/css" href="../theme/button/default/Fee.css"/>
|
|
<script type="text/javascript">
|
|
function $(id)
|
|
{
|
|
return document.getElementById(id);
|
|
}
|
|
function setEnter() {
|
|
if ($("tbTITLE").value == "" || $("tbCONTENTS").value == "") {
|
|
alert("标题、内容不允许为空!");
|
|
return;
|
|
}
|
|
//
|
|
$("hdEnter").value = "0";
|
|
msgBox();
|
|
postEnter();
|
|
}
|
|
//post数据
|
|
function postEnter() {
|
|
var myForm = document.getElementById("form1");
|
|
myForm.submit();
|
|
}
|
|
//回车键控制
|
|
document.onkeypress = function() {
|
|
if (event.keyCode == 13) {
|
|
if (event.srcElement.tagName == 'TEXTAREA') {
|
|
return true;
|
|
}
|
|
//window.event.keyCode=9;
|
|
return false;
|
|
}
|
|
}
|
|
function newGuid() {
|
|
var guid = "";
|
|
for (var i = 1; i <= 32; i++) {
|
|
var n = Math.floor(Math.random() * 16.0).toString(16);
|
|
guid += n;
|
|
if ((i == 8) || (i == 12) || (i == 16) || (i == 20))
|
|
guid += "-";
|
|
}
|
|
return guid.toUpperCase();
|
|
}
|
|
//是否为数字
|
|
function IsNum(val) {
|
|
var re = /^[-\+]?\d+(\.\d+)?$/;
|
|
if (!re.test(val)) {
|
|
return false;
|
|
} else {
|
|
return true;
|
|
}
|
|
}
|
|
//是否为数字2
|
|
function IsNum2(val) {
|
|
var re = /^[0-9]*[1-9][0-9]*$/;
|
|
if (!re.test(val)) {
|
|
return false;
|
|
} else {
|
|
return true;
|
|
}
|
|
}
|
|
//
|
|
function imgFreshChangePic() {
|
|
var pic1 = document.getElementById("imgFresh");
|
|
var start = pic1.src.lastIndexOf("/");
|
|
var str = pic1.src.substring(start + 1);
|
|
if (str == "btnFresh.gif") {
|
|
pic1.src = "../images/icons/progress.gif";
|
|
//pic1.alt="我是B图片";
|
|
}
|
|
else if (str == "progress.gif") {
|
|
pic1.src = "../images/icons/btnFresh.gif";
|
|
//pic1.alt="我是A图片";
|
|
}
|
|
}
|
|
|
|
//--页面重新加载-->
|
|
function reloadParent(strBSNO, strHandle) {
|
|
//alert("strBSNO="+strBSNO);
|
|
var parentObj = window.parent.location;
|
|
var oldUrl = parentObj.href;
|
|
var idIndex = oldUrl.indexOf("&id"); //alert(oldUrl);
|
|
//
|
|
var newUrl = "";
|
|
if (strHandle == "addfull") {
|
|
var handleIndex = oldUrl.indexOf("handle="); //alert(handleIndex);
|
|
newUrl = oldUrl.substring(0, handleIndex);
|
|
window.parent.opener.location.href = window.parent.opener.location.href;
|
|
parentObj.href = newUrl + "handle=edit&id=" + strBSNO;
|
|
}
|
|
else if (strHandle == "edit") {
|
|
//newUrl = oldUrl.substring(0,idIndex+4);//alert(oldUrl.substring(0,idIndex));
|
|
window.parent.opener.location.href = window.parent.opener.location.href;
|
|
//parentObj.href = newUrl+strBSNO;
|
|
}
|
|
else if (strHandle == "del") {
|
|
newUrl = oldUrl.substring(0,idIndex+4);//alert(oldUrl.substring(0,idIndex));
|
|
window.parent.opener.location.href = window.parent.opener.location.href;
|
|
parentObj.href = newUrl+strBSNO;
|
|
}
|
|
else if (strHandle == "add") {
|
|
var handleIndex = oldUrl.indexOf("handle="); //alert(handleIndex);
|
|
newUrl = oldUrl.substring(0, handleIndex);
|
|
window.parent.opener.location.href = window.parent.opener.location.href;
|
|
parentObj.href = newUrl + "handle=edit&id=" + strBSNO;
|
|
}
|
|
//
|
|
//alert("操作成功!");
|
|
}
|
|
//--蒙板--
|
|
function dialog() {
|
|
this.width = 450;
|
|
this.height = 360;
|
|
this.title_height = 20;
|
|
this.html = '';
|
|
this.title = '';
|
|
var self = this;
|
|
var bgObj, msgObj, titleObj;
|
|
this.close = function () {
|
|
document.body.removeChild(document.getElementById("bgDiv"));
|
|
document.getElementById("msgDiv").removeChild(document.getElementById("msgTitle"));
|
|
document.body.removeChild(document.getElementById("msgDiv"));
|
|
}
|
|
|
|
this.show = function () {
|
|
var msgw, msgh, bordercolor;
|
|
msgw = self.width;
|
|
msgh = self.height;
|
|
bordercolor = "#336699";
|
|
titlecolor = "#99CCFF";
|
|
|
|
var sWidth, sHeight;
|
|
sWidth = document.body.offsetWidth;
|
|
sHeight = screen.height;
|
|
bgObj = document.createElement("div");
|
|
bgObj.setAttribute('id', 'bgDiv');
|
|
bgObj.style.position = "absolute";
|
|
bgObj.style.top = "0";
|
|
bgObj.style.background = "#777";
|
|
bgObj.style.filter = "progid:DXImageTransform.Microsoft.Alpha(style=3,opacity=25,finishOpacity=75";
|
|
bgObj.style.opacity = "0.6";
|
|
bgObj.style.left = "0";
|
|
bgObj.style.width = sWidth + "px";
|
|
bgObj.style.height = sHeight + "px";
|
|
bgObj.style.zIndex = "10000";
|
|
document.body.appendChild(bgObj);
|
|
|
|
msgObj = document.createElement("div")
|
|
msgObj.setAttribute("id", "msgDiv");
|
|
msgObj.setAttribute("align", "center");
|
|
msgObj.style.background = "white";
|
|
msgObj.style.border = "1px solid " + bordercolor;
|
|
msgObj.style.position = "absolute";
|
|
msgObj.style.left = "50%";
|
|
msgObj.style.top = "30%";
|
|
msgObj.style.font = "12px/1.6em Verdana, Geneva, Arial, Helvetica, sans-serif";
|
|
msgObj.style.marginLeft = "-225px";
|
|
msgObj.style.marginTop = -75 + document.documentElement.scrollTop + "px";
|
|
msgObj.style.width = msgw + "px";
|
|
msgObj.style.height = msgh + "px";
|
|
msgObj.style.textAlign = "center";
|
|
msgObj.style.lineHeight = "25px";
|
|
msgObj.style.zIndex = "10001";
|
|
|
|
titleObj = document.createElement("h4");
|
|
titleObj.setAttribute("id", "msgTitle");
|
|
titleObj.setAttribute("align", "center");
|
|
titleObj.style.margin = "0";
|
|
titleObj.style.padding = "3px";
|
|
titleObj.style.background = bordercolor;
|
|
titleObj.style.filter = "progid:DXImageTransform.Microsoft.Alpha(startX=20, startY=20, finishX=100, finishY=100,style=1,opacity=75,finishOpacity=100);";
|
|
titleObj.style.opacity = "0.75";
|
|
titleObj.style.border = "1px solid " + bordercolor;
|
|
titleObj.style.height = self.title_height + "px";
|
|
titleObj.style.font = "12px Verdana, Geneva, Arial, Helvetica, sans-serif";
|
|
titleObj.style.color = "white";
|
|
titleObj.style.cursor = "pointer";
|
|
titleObj.innerHTML = self.title;
|
|
//titleObj.onclick=function(){self.close();}
|
|
document.body.appendChild(msgObj);
|
|
document.getElementById("msgDiv").appendChild(titleObj);
|
|
var txt = document.createElement("div");
|
|
txt.style.margin = "1em 0"
|
|
txt.setAttribute("id", "msgTxt");
|
|
txt.innerHTML = self.html;
|
|
document.getElementById("msgDiv").appendChild(txt);
|
|
}
|
|
}
|
|
function msgBox() {
|
|
var dg = new dialog();
|
|
dg.html = "程序正在提交,请稍等!";
|
|
//dg.html+="<input type=button onclick='new dialog().close();' value='确定'>";
|
|
dg.width = 200;
|
|
dg.height = 100;
|
|
dg.title = "标题";
|
|
dg.show();
|
|
}
|
|
</script>
|
|
<!--背景条-->
|
|
<style type="text/css">
|
|
.btn-content0{
|
|
width:100%;
|
|
height:30px;
|
|
background:url("../images/content-header.gif");
|
|
cursor:default;
|
|
}
|
|
</style>
|
|
<style type="text/css">
|
|
*{ margin:0; padding:0;}
|
|
html,body{ width:100%; height:100%; overflow:hidden;}
|
|
.container{ position:relative; width:100%; height:100%; overflow-y:scroll; overflow-x:auto;}
|
|
.topcss{ width:100%; position:absolute; top:0; left:0;}
|
|
.boxcss{ height:600px;}
|
|
.btncss
|
|
{
|
|
width:100px;
|
|
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;
|
|
}
|
|
.tablecss
|
|
{
|
|
border:0;
|
|
background-color:#FFFFFF;
|
|
font-size:12px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body style="background-color: #ECF2FF;">
|
|
<form id="form1" runat="server" style="background-color: #ECF2FF;">
|
|
<div>
|
|
<p class="topcss">
|
|
<div style="width:100%;" class="btn-content0">
|
|
<div class="btn-blank"></div>
|
|
<div id="divibAdd" class="xbtn-img" runat=server>
|
|
<div class="btnimg"><asp:ImageButton ID="ibAdd" runat="server" onclick="ibAdd_Click" ToolTip="添加" ImageUrl="~/images/icons/btnAdd.gif" CssClass="cssfont"/></div>
|
|
</div>
|
|
<div id="divibFullAdd" class="xbtn-img" runat=server>
|
|
<div class="btnimg"><asp:ImageButton ID="ibFullAdd" runat="server" onclick="ibFullAdd_Click" ToolTip="复制添加" ImageUrl="~/images/cmd-copy.gif" CssClass="cssfont"/></div>
|
|
</div>
|
|
<div id="divibEnter" class="xbtn-img" runat=server onclick="setEnter();">
|
|
<div class="btnimg"><img src="../images/icons/save.gif" width="16px" title="保存修改" class="cssfont"/></div>
|
|
</div>
|
|
<div id="divibDel" class="xbtn-img" runat=server>
|
|
<div class="btnimg"><asp:ImageButton ID="ibDel" runat="server" onclick="ibDel_Click" ToolTip="删除" ImageUrl="~/images/icons/remove.gif" OnClientClick="return confirm('确定删除吗?')" CssClass="cssfont"/></div>
|
|
</div>
|
|
<div class="xbtn">
|
|
<asp:Button ID="btISISSUE" runat="server" Text="发布" Width=60px Height=20px onclick="btISISSUE_Click" CssClass="btncss"/>
|
|
</div>
|
|
</div>
|
|
</p>
|
|
<div class="container" style="float:left; width:100%;height:600px; margin-top:10px;">
|
|
<div id="myTab0_Content0">
|
|
<table>
|
|
<tr>
|
|
<td width=10px></td>
|
|
<td>
|
|
<asp:Label ID="Label10" runat="server" Text="标题" Width=30px CssClass="cssfont"></asp:Label>
|
|
</td>
|
|
<td colspan=7>
|
|
<asp:TextBox ID="tbTITLE" runat="server" CssClass="txtTab2" MaxLength="100" Height=20px Width=600px></asp:TextBox>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width=10px></td>
|
|
<td>
|
|
<asp:Label ID="Label34" runat="server" Text="内容" Width=30px CssClass="cssfont"></asp:Label>
|
|
</td>
|
|
<td colspan=7 align=left height="10">
|
|
<asp:TextBox ID="tbCONTENTS" runat="server" CssClass="txtTab2" MaxLength="1024" style="overflow-y:auto;height:500px;" Height=500px Width=600px TextMode="MultiLine"></asp:TextBox>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<input type="hidden" id="hdGid" runat="server"/>
|
|
<input type="hidden" id="hdUserID" runat="server"/>
|
|
<input type="hidden" id="hdHandle" runat="server"/>
|
|
|
|
<input type="hidden" id="hdEnter" runat="server"/>
|
|
<input type="hidden" id="hdISISSUE" runat="server"/>
|
|
</div>
|
|
<div style="height:100px"></div>
|
|
</form>
|
|
</body>
|
|
</html>
|