Hi there,
Are you sure you configured IIS correctly? The error message you get is not an account permission issue, but is due to the fact that IIS doesn't allow you to browse folders. This usually means one of two things:
1. IIS is not configured for a "Default document" called Default.aspx
2. You don't have a file called Default.aspx in the root (e.g. /FileShare) of the application.
To fix it, try this:
1. Add a new page called Default.aspx in the /FileShare folder
2. In the code behind, add this code:
Protected Sub Page_Load(ByVal sender As Object, _
ByVal e As System.EventArgs) Handles Me.Load
Response.Redirect("ContentFiles")
End Sub
When users hit the /FileShare folder, they're taken to /FileShare/ContentFiles automatically.
Hope this helps,
Imar
---------------------------------------
Imar Spaanjaars
Everyone is unique, except for me.
Author of
ASP.NET 2.0 Instant Results and
Beginning Dreamweaver MX / MX 2004
Want to be my colleague? Then check out
this post.