简体   繁体   English

简单的文件上传,无需使用asp.net文件上传控件

[英]Simple file upload without using asp.net fileupload control

I have an html page and I want to upload a file usign the basic html input file without using the asp.net fileupload control. 我有一个html页面,我想使用基本的html输入文件上传文件,而不使用asp.net fileupload控件。 I tried to write the following code in the html page and redirect it to the home page (aspx page) 我试图在html页面中编写以下代码并将其重定向到主页(aspx页面)

<form action ="../../default.aspx" enctype="multipart/form-data" method="post" name="myform">

                <input id="upload_file" type="file" />
                <input id="sumbit_button" type="submit" value="submit"/>

but the Request.Files does not contain the upload_file 但Request.Files不包含upload_file

不幸的是我没有得到任何答案,我通过使用aspx文件而不是html来解决了

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM