12345678910111213141516171819202122232425262728293031 |
- <%@ Page Language="C#" Debug="true" AutoEventWireup="true" CodeFile="Uppic.aspx.cs" Inherits="EditMenu_Uppic" %>
- <!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>
- </head>
- <body>
- <form id="form1" runat="server">
- <div>
- <Table width='90%' border='1'align =center bordercolor='#ccccff' style='border-collapse:collapse'>
- <tr bgcolor='#99ccff'>
- <td align='center'>
- 文件上传</td>
- </tr>
- <tr>
- <td style="height: 22px; color: red;" align='center'>
- 请选择欲上传文件</td>
- </tr>
- <tr>
- <td align='center'>
- <asp:FileUpload ID="FileUpload1" runat="server" Width="571px" />
- <asp:Button ID="btnUpfiles" runat="server" Text="确定上传" Width="80px" OnClick="btnUpfiles_Click" /><br />
- <asp:Literal ID="Literal1" runat="server"></asp:Literal></td>
- </tr>
- </Table>
- </div>
- </form>
- </body>
- </html>
|