How to solve Chinese file name garbled during ASP. NET download, and there are two problems with the code in the TXT file

Source: Internet
Author: User

Problematic code segment:

Response. ContentType = ftype; // ftypeis the file suffix, such as. jpg,. txt,. Zip

Response. AddHeader ("Content-Disposition", "attachment; filename =" + fnametype); // fnametypeindicates the full name of the file, for example, file1.jpg // leading to Chinese name garbled characters

String filename = Server. MapPath ("Resource \" + fnametype); // filename is the relative file path

Response. TransmitFile (filename );

 

Effective solutions to these two problems:

Response. Clear (); // solves the code problem in the TXT file.
Response. ContentType = ftype;
Response. AddHeader ("Content-Disposition", "attachment; filename =" + Server. UrlEncode (fnametype); // solves the problem of garbled Chinese file names
String filename = Server. MapPath ("Resource \" + fnametype );
Response. TransmitFile (filename); www.2cto.com
Response. End (); // solves the code problem in the TXT file.

 

Related Article

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.