123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- <%@ Page Language="C#" AutoEventWireup="true" CodeFile="DispUpList.aspx.cs" Inherits="DispUpList" %>
- <!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 rel="stylesheet" href="../admin/css/dataTable.css" media="screen" />
- <link href="../js/ASPNET2BaseCss.css" rel="stylesheet" type="text/css" />
-
- <style>
- #maindiv{
-
- height:auto;
- border:#06F 1px groove;
- margin:0 auto;
- margin-top:10px;
- border-radius:15px;
- box-shadow:#CCC 6px 6px;
- padding:10px;
- font-size:12px;
- background-color:White;
- }
- #menu1{
-
- background-color:#E7F4F8;
- border:#03C 1px dotted;
- border-radius:8px;
- color:#FFF;
- padding:3px;
- box-shadow:#859CAD 4px 4px;
- text-align:left;
- color:#333399;
-
- }
- #stNav
- {
- padding:5px;
- margin-top:6px;
- background-color:#87B6E9;
- text-align:center;
- border:#F00 1px thick;
- box-shadow:#859CAD 3px 3px;
- border-radius:10px;
- }
- table
- {box-shadow:#859CAD 3px 3px;
- border-radius:5px;
- font-size:12px;
-
- table-layout:fixed;
- empty-cells:show;
- border-collapse:collapse;
- margin:0 auto;
- border:1px solid #000033;
- color:#666;
- }
- table td{border:1px solid #94C4EF; height:28px;}
- h2{
- font-size:32px;
- font-family:"黑体";
- text-align:center;
- color:#00C;
- text-shadow:#000 2px 2px 5px, #FFFFFF -1px -1px 8px,2px 2px 6px #000000;
- }
-
- .zhpj
- {
- font-size:22px;
- font-family:楷体;
- }
- a:active {
- color: #3A2C38;
- }
- a:hover {
- color: #F00;
- }
- a:link {
- color: #415374;
- }
- a:hover {
- text-decoration: underline;
- }
-
- </style>
- <script>
- function Delconfirm(ID) {
- if (confirm("Are You Sure Want to Delete These Records?")) {
- strurl = "../admin/DelOk.aspx?id=" + ID;
- // alert(strurl);
- BoardWina(strurl);
- }
- }
- function BoardWina(url) {
- var oth = "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,left=200,top=200";
- oth = oth + ",width=400,height=300";
- var BoardWin = window.open(url, "BoardWin", oth);
- BoardWin.focus();
- return false;
- }
- function myrefresh() {
- window.location.reload();
- }
- </script>
-
-
- </head>
- <body>
- <form id="form1" runat="server">
- <input type="hidden" name="Board">
- <div id="maindiv">
- <div id="stNav">
- <table width='96%' height='111' border='1' align="center" cellspacing='1'
- bordercolor="#C1E7FD" bgcolor="#F4FCFF">
- <!--DWLayoutTable-->
- <tr bgcolor="#E2F2FC">
- <td height='33' align="center">
- <h2>
- <asp:Literal ID="Literal2" runat="server" Text="其它督导内容显示浏览、附件上传"></asp:Literal></h2>
- <p>
- AddCourse.aspx中(数据库和USerDate表创建中)增加两个字段,附件说明1,附件说明2</p>
- </td>
- </tr>
-
- <tr align='center' >
- <td align='center' valign='middle'>
- <br />
-
-
- <input type="button" value="刷 新" onclick="myrefresh()" name="bt4" cssclass="Input3" />
- <input type="hidden" name="Board"> <asp:Literal ID="Literal1" runat="server"></asp:Literal>
- </td>
- </tr>
- <tr bgcolor="#E2F2FC">
- <td>
- </td> </tr>
- </table>
-
- <br />
- </div>
- </div>
- </form>
- </body>
- </html>
|