問:我用下面的代碼片段上傳文件...當我用它工作得很好<identity impersonate="true" />
和<authentication mode="Windows" />
:如何使用<identity impersonate="true" />
和<authentication mode="Forms" />
上傳文件時出錯
問題上傳文件但只要我將<authentication mode="Windows" />
更改爲<authentication mode="Forms" />
,就會出現拒絕訪問錯誤。如何解決此問題?
我需要使用<authentication mode="Forms" />
爲我的註冊和登錄系統工作。希望你們明白我的觀點。
If fuProfilePicture.HasFile Then
fuProfilePicture.SaveAs(System.IO.Path.Combine(Server.MapPath("ProfilePictures"), _userName & System.IO.Path.GetExtension(fuProfilePicture.FileName)))
Else
Response.Write("Select An Image")
End If
_profilePic = "ProfilePictures" & "/" & _userName & System.IO.Path.GetExtension(fuProfilePicture.FileName)
如果您禁用模擬,會發生什麼情況? – 2012-03-10 19:40:15
我收到了同樣的錯誤...「訪問被拒絕」 – user1150440 2012-03-10 19:43:47
擁有您的Web應用程序的用戶沒有權限訪問您要寫入的目錄。檢查您的目錄權限。 – 2012-03-10 19:50:36