UpFileForm.asp
资源名称:1.rar [点击查看]
上传用户:yrf020
上传日期:2007-07-24
资源大小:1287k
文件大小:1k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

HTML/CSS

  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  4. <link rel="stylesheet" href="Images/CssAdmin.css">
  5. <title>文件选择</title>
  6. </head> 
  7. <!--#include file="CheckAdmin.asp"-->
  8. <body>
  9. <table width="400" border="0" align="center" cellpadding="12" cellspacing="1" bgcolor="#6ab6b6">
  10.   <form action="UpFileSave.asp?Result=<%=request.QueryString("Result")%>" method="post" enctype="multipart/form-data" name="formUpload">
  11.   <tr>
  12.     <td bgcolor="#eafefe">
  13. <table width="100%" border="0" cellspacing="0" cellpadding="0">
  14.       <tr>
  15.         <td width="60" height="30" nowrap>选择文件:</td>
  16.         <td><input name="FromFile" type="file" class="textfield" id="FromFile" size="41"></td>
  17.       </tr>
  18.       <tr>
  19.         <td height="30">上传位置:</td>
  20.         <td><select name="SaveToPath" class="textfield">
  21.           <option value="../Upload/PicFiles/" selected>图片文件 /Upload/PicFiles</option>
  22.           <option value="../Upload/DownFiles/">下载文件 /Upload/DownFiles</option>
  23.           <option value="../Upload/OtherFiles/">其他文件 /Upload/OtherFiles</option>
  24.         </select></td>
  25.       </tr>
  26.       <tr>
  27.         <td height="36" colspan="2" align="center" valign="bottom"><input name="reset" type="reset" class="button" value=" 重置 ">
  28.           &nbsp;<input name="Submit" type="submit" class="button" value=" 上传 "></td>
  29.         </tr>
  30.     </table>
  31. </td>
  32.   </tr>
  33.   </form>
  34. </table>
  35. </body>
  36. </html>