| 12345678910111213141516171819202122232425262728 |
- <%
- if session("adminxxx")="" then
- response.Redirect("../login.html")
- end if
- %>
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
- <SCRIPT language=javascript>
- function check()
- {
- var strFileName=document.form1.FileName.value;
- if (strFileName=="")
- {
- alert("请选择要上传的文件");
- document.form1.FileName.focus();
- return false;
- }
- }
- </SCRIPT>
- </head>
- <body leftmargin="0" topmargin="0" bgcolor="#F2F2F2">
- <form action="Upfile1.asp" method="post" name="form1" onSubmit="return check()" enctype="multipart/form-data">
- <input name="FileName" type="FILE" class=inputuser size="35">
- <input type="submit" class=boxttx name="Submit" value="上传"">
- </form>
- </body>
- </html>
|