Microsoft
Software
Hardware
Network
Question : File Upload & Download using ASP.net 2.5 & MVC2.0
I have trying to upload file using the below code
public ActionResult Upload(HttpPostedFileBase FileUpload)
{
string fileName = Path.GetFileName(FileUploa
d.FileName
);
byte[] buf = new byte[FileUpload.ContentLen
gth];
fileTransferInfo.FileName = Server.HtmlEncode(fileName
);
FileUpload.InputStream.Rea
d(buf, 0, FileUpload.ContentLength);
FileUpload.SaveAs(@"C:\MyU
ploadedFil
es");
}
And getting the following error.
System.UnauthorizedAccessE
xception: Access to the path 'C:\MyUploadedFiles' 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
, 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.
I have tried grading permission to appropriate user or group.But nothing solved my problem.Can any one help /
Answer : File Upload & Download using ASP.net 2.5 & MVC2.0
use fiddler to track down the connections
Random Solutions
Variable 'dataRS' is used before it has been assigned a value. A null reference exception could result at runtime.
Uneccessary Programs/ addons ...things that take up internet bandwidth that can be removed.
Sum column in datagrid
SQL - Dates syntax ( VB6 connecting to SQL Server database)
Unable to RDP into Windows 2003 SBS after reboot
Internet explorer crashes
Quick One: Type Mismatch Error in Access 2007
Split importing of a .CSV file using VB
Windows Server 2008 R2 log spooler events
How to move XML namespaces to SOAP header in Webservice proxy (From WSDL file)