Logon in error

  • Thread starter Thread starter CsaaGuy
  • Start date Start date
C

CsaaGuy

Hi i have an xp profession, iis 5.1 asp/vb.net app. On the developement
box i can login no problem. With an client hitting this box i get
prompted for the user id/password. It only works if i login as the
administror of the server box. Does anyone know what is happening? The
client is my desktop pc and its user id and password are the same as
the development box (my labtop)

Thanks.
 
Open IIS Manager and check Directory Security setting for your
application, ensure the authentication mode is "allow anonymous."
If this cannot solve your problem, check Web.config of your
application, and ensure it has the following text:

<authentication mode="Windows" />
<authorization>
<allow users="*" />
</authorization>

Michael
 
I'm trying to use windows authentication. When i set up <authentication
lode="Windows"><authentication>
<identity impersonate="false"><identity>

and under authoization
<allow users="*" />

I get a dialog box prompting me for the user id / password, this prompt
is before i get web page. Thanks.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top