2014-11-06 19 views
5

ASP.NET kullanarak oluşturduğum uygulama ve C#, okunurken bir belgeyi saklamak için geçici bir yol kullanır ve sonra da sildikten sonra siler:ASP.NET, geçici kaynak klasörüne erişirken istenen kaynağa erişmeye yetkili değildir.

string path = string.Concat((Server.MapPath("~/temp/" + FileUpload1.FileName))); 

Array.ForEach(Directory.GetFiles((Server.MapPath("~/temp/"))), File.Delete); 

Herhangi bir yardım için teşekkür ederiz. StockControl belgesi bir örnektir ve bir ağdaki birden çok bilgisayardan içe aktarılabilir. Benim dosya yüklendi ve geçici dizine kaydediliyor değil gibi görünüyor hata mesajı ... dayanan

yerel yolu ayıklama (İŞLER):

C:\Users\USER\Documents\Visual Studio 2013\Projects\WebApplication5\WebApplication5\temp 

uygulama başarıyla ancak dağıtıldığında i Dosyayı ekleyin ve "İçe Aktar" a basın, hata mesajı alıyorum: 'C: \ inetpub \ wwwroot \ StockControl \ temp \ Book1.xls' yoluna erişim reddedildi.

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 'C:\inetpub\wwwroot\StockControl\temp\Book1.xls' 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 and IIS 7, and the configured application pool identity on IIS 7.5) 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 File 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:

An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.

+1

Tam olarak hangi hata iletilerinin yazdığını yapın: web.config dosyanıza ekleyin – Zilog

+1

Hata, yola erişimin reddedildiğini söylüyor. Bundan daha açık olamazdı :) Uygulama Havuzu kimliğinizin uygulamanızın tüm kök klasörüne erişebildiğinden emin olun. – PoweredByOrange

cevap

5

gerçekten basit bir düzeltme benim sorunu çözmek için, IIS ben uygulama havuzları sağ tıklamak ve klasik/

başka çözüm yerine Entegre için .NET Framework V4 set belirlemekti zorunda gereken kullanıcılara okuma/yazma için erişilen belirli klasör, bu benzersiz kullanıcılar tarafından veya bir organizasyon içinde, bir kullanıcı grubu

1

Ben aynı sorunu yaşıyorum.

Sorunu düzeltmek için aşağıdaki değişiklikleri yapın.

(1) wwwroot klasörüne gittim. Sağ tıklayıp güvenlik sekmesi. IISUSER, wwwroot klasörüne okuma ve yazma izni ayarlamak için sağlandı.

(2) Uygulama havuzunu ayrı havuza değiştirdi ve kimliği Uygulama havuzu kimliğine ayarla.

İlgili konular