DispUpList.aspx 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeFile="DispUpList.aspx.cs" Inherits="DispUpList" %>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head id="Head1" runat="server">
  5. <title></title>
  6. <link rel="stylesheet" href="../admin/css/dataTable.css" media="screen" />
  7. <link href="../js/ASPNET2BaseCss.css" rel="stylesheet" type="text/css" />
  8. <style>
  9. #maindiv{
  10. height:auto;
  11. border:#06F 1px groove;
  12. margin:0 auto;
  13. margin-top:10px;
  14. border-radius:15px;
  15. box-shadow:#CCC 6px 6px;
  16. padding:10px;
  17. font-size:12px;
  18. background-color:White;
  19. }
  20. #menu1{
  21. background-color:#E7F4F8;
  22. border:#03C 1px dotted;
  23. border-radius:8px;
  24. color:#FFF;
  25. padding:3px;
  26. box-shadow:#859CAD 4px 4px;
  27. text-align:left;
  28. color:#333399;
  29. }
  30. #stNav
  31. {
  32. padding:5px;
  33. margin-top:6px;
  34. background-color:#87B6E9;
  35. text-align:center;
  36. border:#F00 1px thick;
  37. box-shadow:#859CAD 3px 3px;
  38. border-radius:10px;
  39. }
  40. table
  41. {box-shadow:#859CAD 3px 3px;
  42. border-radius:5px;
  43. font-size:12px;
  44. table-layout:fixed;
  45. empty-cells:show;
  46. border-collapse:collapse;
  47. margin:0 auto;
  48. border:1px solid #000033;
  49. color:#666;
  50. }
  51. table td{border:1px solid #94C4EF; height:28px;}
  52. h2{
  53. font-size:32px;
  54. font-family:"黑体";
  55. text-align:center;
  56. color:#00C;
  57. text-shadow:#000 2px 2px 5px, #FFFFFF -1px -1px 8px,2px 2px 6px #000000;
  58. }
  59. .zhpj
  60. {
  61. font-size:22px;
  62. font-family:楷体;
  63. }
  64. a:active {
  65. color: #3A2C38;
  66. }
  67. a:hover {
  68. color: #F00;
  69. }
  70. a:link {
  71. color: #415374;
  72. }
  73. a:hover {
  74. text-decoration: underline;
  75. }
  76. </style>
  77. <script>
  78. function Delconfirm(ID) {
  79. if (confirm("Are You Sure Want to Delete These Records?")) {
  80. strurl = "../admin/DelOk.aspx?id=" + ID;
  81. // alert(strurl);
  82. BoardWina(strurl);
  83. }
  84. }
  85. function BoardWina(url) {
  86. var oth = "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,left=200,top=200";
  87. oth = oth + ",width=400,height=300";
  88. var BoardWin = window.open(url, "BoardWin", oth);
  89. BoardWin.focus();
  90. return false;
  91. }
  92. function myrefresh() {
  93. window.location.reload();
  94. }
  95. </script>
  96. </head>
  97. <body>
  98. <form id="form1" runat="server">
  99. <input type="hidden" name="Board">
  100. <div id="maindiv">
  101. <div id="stNav">
  102. &nbsp;&nbsp;&nbsp;<table width='96%' height='111' border='1' align="center" cellspacing='1'
  103. bordercolor="#C1E7FD" bgcolor="#F4FCFF">
  104. <!--DWLayoutTable-->
  105. <tr bgcolor="#E2F2FC">
  106. <td height='33' align="center">
  107. <h2>
  108. <asp:Literal ID="Literal2" runat="server" Text="其它督导内容显示浏览、附件上传"></asp:Literal></h2>
  109. <p>
  110. AddCourse.aspx中(数据库和USerDate表创建中)增加两个字段,附件说明1,附件说明2</p>
  111. </td>
  112. </tr>
  113. <tr align='center' >
  114. <td align='center' valign='middle'>
  115. &nbsp;<br />
  116. <input type="button" value="刷 新" onclick="myrefresh()" name="bt4" cssclass="Input3" />
  117. <input type="hidden" name="Board">&nbsp; <asp:Literal ID="Literal1" runat="server"></asp:Literal>
  118. </td>
  119. </tr>
  120. <tr bgcolor="#E2F2FC">
  121. <td>
  122. &nbsp;</td> </tr>
  123. </table>
  124. <br />
  125. </div>
  126. </div>
  127. </form>
  128. </body>
  129. </html>