123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- <%@ Page Language="C#" Debug="true" AutoEventWireup="true" CodeFile="BatchExport.aspx.cs" Inherits="Admin_BatchExport" %>
- <!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">
- table
- {box-shadow:#859CAD 3px 3px;
- border-radius:10px;
- }
- table {
- font-size: 12px;
- color: #063E7B;
- }
- .Input3 {
- font-family: "宋体";
- font-size: 9pt;
- color: #0066CC;
- text-decoration: none;
- border-top-width: 1px;
- border-right-width: 1px;
- border-bottom-width: 1px;
- border-left-width: 1px;
- border-top-style: solid;
- border-right-style: solid;
- border-bottom-style: solid;
- border-left-style: solid;
- border-top-color: #FFFFFF;
- border-right-color: #FFFFFF;
- border-bottom-color: #0066CC;
- border-left-color: #FFFFFF;
- }
- input {
- background-color: #EEFAFF;
- border-top-color: #C6DCFB;
- border-right-color: #C6DCFB;
- border-bottom-color: #C6DCFB;
- border-left-color: #C6DCFB;
-
- }
- Select {
- font-family: "Tahoma", "宋体";
- font-size: 9pt;
- color: #0066cc;
- border: 1px #c8e4ff solid;
- background-color: #e8f4ff;
- font-style: normal
- }
-
- #XQ
- {
- width: 148px;
- }
- #JC
- {
- width: 132px;
- }
- textarea{
- font-family: "Tahoma", "宋体";
- font-size: 9pt;
- font-color:#0066cc;
- color: #0066cc;
- background-color: #ffffff;
- font-style: normal;
- border-top: 1px solid #93BEE2;
- border-right: 1px solid #93BEE2;
- border-bottom: 1px solid #93BEE2;
- border-left: 1px solid #93BEE2;
- }
- .style2
- {
- height: 39px;
- }
- </style>
- </head>
- <body>
- <form id="form1" runat="server">
- <div id="maindiv">
- <div id="stNav">
- <table width='600' height='111' border='1' align="center" cellspacing='1' bordercolor="#C1E7FD" bgcolor="#F4FCFF">
- <!--DWLayoutTable-->
- <tr bgcolor="#E2F2FC" >
- <td height='33' align="center">
- <font color="#FF0000" size="4" face="黑体">数据导出功能--选择参数</font> </td>
- </tr>
- <tr>
- <TD><!--DWLayoutEmptyCell-->
- <asp:Button
- ID="Button3" runat="server" CssClass="Input3" Height="26px"
- Text="第一步:查询要导出数据的表名" onclick="Button1_Click" />
- </TD>
- </tr>
- <tr>
- <TD><!--DWLayoutEmptyCell-->
- <asp:ListBox ID="TableList" runat="server" Height="26px" Rows="1"
- Width="323px" onselectedindexchanged="ListBox1_SelectedIndexChanged"
- AutoPostBack="True"></asp:ListBox>
- </TD>
- </tr>
- <tr>
- <TD><!--DWLayoutEmptyCell-->
- <asp:Button
- ID="Button5" runat="server" CssClass="Input3" Height="26px"
- Text="第二步:读取数据表字段名称" onclick="Button1_Click" />
- </TD>
- </tr>
- <tr>
- <TD align="left">
-
- <asp:CheckBoxList ID="FieldNameList" runat="server" Height="24px"
- RepeatColumns="4" RepeatDirection="Horizontal" Width="635px">
- </asp:CheckBoxList>
-
- </TD>
- </tr>
- <tr>
- <TD><!--DWLayoutEmptyCell-->
- <asp:Button
- ID="Button7" runat="server" CssClass="Input3" Height="26px"
- Text="第三步:选择字段名后导出数据" onclick="Button7_Click" />
- </TD>
- </tr>
- <TR>
- <TD><!--DWLayoutEmptyCell-->
- </TD>
- </TR>
-
- <tr align='center'>
- <td align='center' valign='middle' class="style2">
- </td>
- </tr>
- </table><br />
- </div>
- <div id="menu1">
- </div>
- </form>
- </body>
- </html>
|