Click here to Skip to main content
16,012,223 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
See more:
am using the file upload control for image uploading and file uploading its working good in localhost but after am hosting my application on server its didn't wrk am getting the fallowing error



Access to the path '\\fs8-n01\stor11wc2dfw1\450429\592629\www.4i-solutions.com\web\content\images\DSCN1668 (1).JPG' is denied.

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.UnauthorizedAccessException: Access to the path '\\fs8-n01\stor11wc2dfw1\450429\592629\www.4i-solutions.com\web\content\images\DSCN1668 (1).JPG' is denied.

ASP.NET is not authorized to access the requested resource. Consider granting access rights to the resource to the ASP.NET request identity. ASP.NET has a base process identity (typically {MACHINE}\ASPNET on IIS 5 or Network Service on IIS 6) that is used if the application is not impersonating. If the application is impersonating via <identity impersonate="true">, the identity will be the anonymous user (typically IUSR_MACHINENAME) or the authenticated request user.

To grant ASP.NET access to a file, right-click the file in Explorer, choose "Properties" and select the Security tab. Click "Add" to add the appropriate user or group. Highlight the ASP.NET account, and check the boxes for the desired access.

Source Error:


Line 57:
Line 58: string file = "~/images/" + fup.FileName;
Line 59: fup.SaveAs(Server.MapPath(file));
Line 60:
Line 61: SqlCommand cmd1 = new SqlCommand("insert into testimonials values('" + txtName.Text + "','" + file + "','"+txtContent.Text+"')", con);

AND MY CODE IS AS FALLOWS

C#
protected void Button1_Click(object sender, EventArgs e)
   {
       string file = "";
       con.Open();
       file = "~/images/" + fup.FileName;
       fup.SaveAs(Server.MapPath(file));

       SqlCommand cmd1 = new SqlCommand("insert into testimonials values('" + txtName.Text  + "','" + file + "','"+txtContent.Text+"')", con);

       int i = cmd1.ExecuteNonQuery();
       con.Close();

       if (i > 0)
       {
           Response.Write("uploaded");
       }

   }


PLZ HELP FOR THIS...
Posted
Comments
Karthik Harve 29-Nov-11 6:33am    
Check by setting "ReadOnly" property of file to "false" while saving in server location.

provide all the permission to the images folder on server.

right click on the images folder and click on properties

now click on web sharing tab popup window will open for permission provide all the permission then click OK

then check may be your problem will be solved.
 
Share this answer
 
There is a logical error here. When you try to send all the path name by query, the special characters blocks this.
There are two main solution here
1. Send your values via parameters,
2. Send only the file name (do not include the path) and when you need this file, declare the path again and get only file name (and of course use parametres again)

Hope that helps.
 
Share this answer
 
its a permission issue.

1. Add IIS_IUSRS in directory --> right click properties --> security where you
want to upload files.
2. Give access of Modify to it.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900