BatchExport.aspx 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. <%@ Page Language="C#" Debug="true" AutoEventWireup="true" CodeFile="BatchExport.aspx.cs" Inherits="Admin_BatchExport" %>
  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 runat="server">
  5. <title></title>
  6. <style type="text/css">
  7. table
  8. {box-shadow:#859CAD 3px 3px;
  9. border-radius:10px;
  10. }
  11. table {
  12. font-size: 12px;
  13. color: #063E7B;
  14. }
  15. .Input3 {
  16. font-family: "宋体";
  17. font-size: 9pt;
  18. color: #0066CC;
  19. text-decoration: none;
  20. border-top-width: 1px;
  21. border-right-width: 1px;
  22. border-bottom-width: 1px;
  23. border-left-width: 1px;
  24. border-top-style: solid;
  25. border-right-style: solid;
  26. border-bottom-style: solid;
  27. border-left-style: solid;
  28. border-top-color: #FFFFFF;
  29. border-right-color: #FFFFFF;
  30. border-bottom-color: #0066CC;
  31. border-left-color: #FFFFFF;
  32. }
  33. input {
  34. background-color: #EEFAFF;
  35. border-top-color: #C6DCFB;
  36. border-right-color: #C6DCFB;
  37. border-bottom-color: #C6DCFB;
  38. border-left-color: #C6DCFB;
  39. }
  40. Select {
  41. font-family: "Tahoma", "宋体";
  42. font-size: 9pt;
  43. color: #0066cc;
  44. border: 1px #c8e4ff solid;
  45. background-color: #e8f4ff;
  46. font-style: normal
  47. }
  48. #XQ
  49. {
  50. width: 148px;
  51. }
  52. #JC
  53. {
  54. width: 132px;
  55. }
  56. textarea{
  57. font-family: "Tahoma", "宋体";
  58. font-size: 9pt;
  59. font-color:#0066cc;
  60. color: #0066cc;
  61. background-color: #ffffff;
  62. font-style: normal;
  63. border-top: 1px solid #93BEE2;
  64. border-right: 1px solid #93BEE2;
  65. border-bottom: 1px solid #93BEE2;
  66. border-left: 1px solid #93BEE2;
  67. }
  68. .style2
  69. {
  70. height: 39px;
  71. }
  72. </style>
  73. </head>
  74. <body>
  75. <form id="form1" runat="server">
  76. <div id="maindiv">
  77. <div id="stNav">
  78. &nbsp;&nbsp;&nbsp;<table width='600' height='111' border='1' align="center" cellspacing='1' bordercolor="#C1E7FD" bgcolor="#F4FCFF">
  79. <!--DWLayoutTable-->
  80. <tr bgcolor="#E2F2FC" >
  81. <td height='33' align="center">
  82. <font color="#FF0000" size="4" face="黑体">数据导出功能--选择参数</font> </td>
  83. </tr>
  84. <tr>
  85. <TD><!--DWLayoutEmptyCell-->
  86. <asp:Button
  87. ID="Button3" runat="server" CssClass="Input3" Height="26px"
  88. Text="第一步:查询要导出数据的表名" onclick="Button1_Click" />
  89. &nbsp;</TD>
  90. </tr>
  91. <tr>
  92. <TD><!--DWLayoutEmptyCell-->
  93. <asp:ListBox ID="TableList" runat="server" Height="26px" Rows="1"
  94. Width="323px" onselectedindexchanged="ListBox1_SelectedIndexChanged"
  95. AutoPostBack="True"></asp:ListBox>
  96. </TD>
  97. </tr>
  98. <tr>
  99. <TD><!--DWLayoutEmptyCell-->
  100. <asp:Button
  101. ID="Button5" runat="server" CssClass="Input3" Height="26px"
  102. Text="第二步:读取数据表字段名称" onclick="Button1_Click" />
  103. &nbsp;</TD>
  104. </tr>
  105. <tr>
  106. <TD align="left">
  107. <asp:CheckBoxList ID="FieldNameList" runat="server" Height="24px"
  108. RepeatColumns="4" RepeatDirection="Horizontal" Width="635px">
  109. </asp:CheckBoxList>
  110. </TD>
  111. </tr>
  112. <tr>
  113. <TD><!--DWLayoutEmptyCell-->
  114. <asp:Button
  115. ID="Button7" runat="server" CssClass="Input3" Height="26px"
  116. Text="第三步:选择字段名后导出数据" onclick="Button7_Click" />
  117. &nbsp;</TD>
  118. </tr>
  119. <TR>
  120. <TD><!--DWLayoutEmptyCell-->
  121. &nbsp;</TD>
  122. </TR>
  123. <tr align='center'>
  124. <td align='center' valign='middle' class="style2"> &nbsp;
  125. &nbsp;</td>
  126. </tr>
  127. </table><br />
  128. </div>
  129. <div id="menu1">
  130. </div>
  131. </form>
  132. </body>
  133. </html>