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.

98 lines
5.6 KiB
Plaintext

10 months ago
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Message.aspx.cs" Inherits="DSWeb.Message.Message" %>
<!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>
<link rel="STYLESHEET" type="text/css" href="../theme/dhtmlxgrid.css"/>
<link rel="STYLESHEET" type="text/css" href="../theme/page.css"/>
<link rel="STYLESHEET" type="text/css" href="../theme/button/default/Fee.css"/>
<link href="../theme/dhtmlxcombo.css" type="text/css" rel="Stylesheet" media="screen"/>
<script src="../js/dhtmlxcommon.js" type="text/javascript"></script>
<script src="../js/dhtmlxgrid.js" type="text/javascript"></script>
<script src="../js/dhtmlxgridcell.js" type="text/javascript"></script>
<script src="../js/dhtmlxcombo.js" type="text/javascript"></script>
<script src="../js/dhtmlxgrid_keymap_excel.js" type="text/javascript"></script>
<script src="../js/dhtmlxgrid_drag.js" type="text/javascript"></script>
<script src="../js/dhtmlxgrid_group.js" type="text/javascript"></script>
<script src="../js/dhtmlxgrid_mcol.js" type="text/javascript"></script>
<script src="../js/TGridCommon.js" type="text/javascript"></script>
<script src="../js/json2.js" type="text/javascript"></script>
<script src="../js/message.js" type="text/javascript"></script>
</head>
<body onload="createGrid()" style="background-color:#ecf2ff;">
<div style="width:100%;height:100%">
<div style="width:500px;height:100%;float:left;">
<div class="btn-content">
<div class="btn-blank"></div>
<div class="xbtn-img" onclick="refreshList()">
<div class="btnimg"><img src="../images/icons/refresh.gif" width="16px" title="刷新列表"/></div>
</div>
<div class="xbtn-img" onclick="deleteMsg();">
<div class="btnimg"><img src="../images/icons/remove.gif" width="16px" title="删除消息"/></div>
</div>
<div class="xbtn" onclick="markRead();">
<div class="btntxt">标记为已读</div>
</div>
<div class="xbtnnull">
<div style="float:left;width:60px; padding-top:6px;">查看类型:</div>
<div style="float:left"><select style="width:70px" id="sel_read" onchange="onChangeType('sel_read')"><option value="1">未读</option><option value="2">已读</option><option value="3">全部</option></select></div>
</div>
<div class="xbtn" onclick="msgSetting()">
<div class="btntxt">消息设置</div>
</div>
</div>
<div style="width:100%; position:relative;height:100%;"><div id="mygrid_container_message" style="width:490px; height:420px;" runat="server"></div>
<div id="pager" style="width: 100%; margin: 0px; padding: 4px; border: 0px solid #999;"></div>
<div id="info" style="text-align: center; width: 100%; margin: 0 2px; padding: 4px; border: 1px solid #999;display:none;"></div>
</div>
</div>
<div style="width:40%;height:100%;float:left; border:1px;border-color:#000000;">
<div class="btn-content">
<div class="btn-blank"></div>
</div>
<div id="dvTopButton" style="width:100%; height:23px;border:1px solid #C1BBAB;">
<div style="float:right; padding-right:5px; padding-right:5px;padding-top:3px;"><a href="javascript:void(0)" style="text-decoration:none;color:#000000;" onclick="upNext()">上一封</a></div>
<div style="float:right; padding-right:5px; padding-right:5px;padding-top:3px;"><a href="javascript:void(0)" style="text-decoration:none;color:#000000;" onclick="downNext()">下一封</a></div>
</div>
<div id="dvTitle" style="width:100%; height:23px;">
<div style="width:60%;height:100%;float:left; text-align:left;">
<div id="dvTitleContent" style="width:100%;height:100%;border-left:1px solid #C1BBAB; padding-top:3px;"></div>
</div>
<div style="width:40%;height:100%;float:left;text-align:right;">
<div id="dvTime" style="width:100%;height:100%;border-left:1px solid #C1BBAB;border-right:1px solid #C1BBAB;padding-top:3px;"></div>
</div>
</div>
<div style="width:100%; text-align:left;height:300px;">
<div id="dvMessageContent" style="width:100%;height:100%;border:1px solid #C1BBAB;padding-top:3px;"></div>
</div>
<div id="dvNotice" style="width:100%;height:20px;"></div>
<div style="width:100%;height:50px;">
</div>
</div>
</div>
<form id="form1" runat="server">
<div>
<input type="hidden" id="h_message" runat="server"/>
<input type="hidden" id="h_userid" runat="server" />
<input type="hidden" id="h_posttype" runat="server" />
<input type="hidden" id="h_messageid" runat="server" />
</div>
</form>
</body>
</html>