ASP. NET multi-attachment upload

Source: Internet
Author: User
Here is a key point. Do not ignore it. Otherwise Program Cannot work normally.
You must specify the form Enctype = "multipart/form-Data" Attribute

CodeAs follows:

<% @ Page Language = "C #" codebehind = "multiattchments. aspx. cs" autoeventwireup = "false" inherits = "webapplication3.multiattchments" %>
<! Doctype HTML public "-// W3C // dtd html 4.0 transitional // en">
<HTML>
<Head>
<SCRIPT>
Function addattachments ()
{
Document. getelementbyid ('Attach '). innertext = "add attachment ";

TB = Document. getelementbyid ('attachances ');
Newrow = Tb. insertrow ();
Newrow. insertcell (). innerhtml = "<input name = 'file' size = '50' type = 'file'> & nbsp; <input type = button value = 'delete' onclick = 'delfile (this. parentelement. parentelement. rowindex) '> ";
}
Function delfile (INDEX)
{
Document. getelementbyid ('attachances'). deleterow (INDEX );
TB. Rows. length> 0? Document. getelementbyid ('Attach '). innertext = "add attachment": Document. getelementbyid ('Attach'). innertext = "add attachment ";
}
</SCRIPT>
</Head>
<Body ms_positioning = "gridlayout">
<Form ID = "form1" method = "Post" runat = "server" enctype = "multipart/form-Data">
<Div> <Table id = "attachments"> </table> </div> <span> </span> <a id = "Attach "Style =" font-family:; font-size: 9pt; "Title =" if you want to send multiple attachments, you only need to click "add attachment" multiple times, note that the total number of attachments cannot exceed the size limit. "Onclick =" addattachments ();"
Href = "javascript:;" name = "Attach"> Add an attachment </a>
<Br>
<Asp: button id = "btnsend" runat = "server" text = "Upload"> </ASP: button>
</Form>
</Body>
</Html>
Private void btnsend_click (Object sender, system. eventargs E)
{
Stringbuilder sb = new stringbuilder ();

 

Int attcount = 0;
String filepath = "";
For (INT I = 0; I <request. Files. Count; I ++)
{
If (request. Files [I]. contentlength> 0)
{
Filepath = request. Files [I]. filename;
SB. append ("Files" + attcount ++ ":" + filepath + "<br> ");
Request. files [0]. saveas (server. mappath (". /") + filepath. substring (filepath. lastindexof ("file: // % 22) + 1 /));
}
}

SB. insert (0, "you upload" + attcount + "files. <br> ");
Response. Write (sb. tostring ());
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.