ASP. NET c # File Upload

Source: Internet
Author: User

Exception details: System. UnauthorizedAccessException: access to the path "C: InetpubspatialcskCommunitiesCommonImagesHtmlTextBoxUserImageslogo.gif" is denied.
ASP. NET is not authorized to access the requested resources. Consider granting the ASP. NET Request identity the permission to access this resource. ASP. NET has a base process ID used when the application is not simulated (typically, {MACHINE} ASPNET on IIS 5 and Network Service on IIS 6 ). If the application is simulating through <identity impersonate = "true"/>, the identity will be an anonymous user (usually IUSR_MACHINENAME) or an authenticated user.
To grant ASP. NET write access to a file, right-click the file in resource manager, select "properties", and select the "Security" tab. Click Add to add an appropriate user or group. Highlight the ASP. NET account and select the corresponding access permission box.
Source error:
Row 23:
Line 24: // change the following "c:" To the address you want to save.
Row 25: myFile. PostedFile. SaveAs ("C: InetpubspatialcskCommunitiesCommonImagesHtmlTextBoxUserImages" + newnm );
Row 26:
Row 27: // obtain the attributes of the uploaded file.
<% --
Upload. aspx
This is an upload file, from which we can see the advantages of asp.net, the previously required controls to complete the program, now only a few lines of code can be easily completed.
-- %>
<% @ Import Namespace = "System. IO" %>
<% @ Page Language = "C #" debug = "true" codepage = "936" %>
<Html>
<Head>
<Title> file upload, aspcool.com </title>
<Script language = "C #" runat = "server">
Public void UploadFile (object sender, EventArgs E)
{
If (myFile. PostedFile! = Null)
{
// Define some variables
String nam = myFile. PostedFile. FileName;
Int I = nam. LastIndexOf ("");
String newnm = nam. Substring (I );
// Change the following "c:" To the address you want to save.

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.