Results 1 to 4 of 4

Thread: Web.config Question

  1. #1

    Thread Starter
    New Member
    Join Date
    Jul 2004
    Posts
    8

    Web.config Question

    Is there a way to allow all users from a particular domain to access a site? Right now I am having to place the domain and the user name for everyone that comes to the site. It is a site that is internal to the company. for example

    <allow users="domain\user1,domain\user2,domain\user3" />

    I tried using a wildcard like
    <allow users="domain\*" />

    but it does not allow that. Is there a different way?

    Thanks!

  2. #2
    Frenzied Member axion_sa's Avatar
    Join Date
    Jan 2002
    Location
    Joburg, RSA
    Posts
    1,724

    Re: Web.config Question

    Nope. However, perhaps an alternative is to try using domain groups. Give this a shot:
    Code:
    <allow users="Domain\Domain Users" />
    Just replace the domain - "Domain Users" (assuming I remember correctly) is a group that contains all users on the specified domain.

  3. #3

    Thread Starter
    New Member
    Join Date
    Jul 2004
    Posts
    8

    Re: Web.config Question

    I just tried that idea and it does not work for me...any other suggestions?

  4. #4
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    Re: Web.config Question

    Try

    Code:
    <allow roles="domainname\Everyone" />
    OR, if that doesn't work

    Code:
    <allow roles="domainname\Managers, domainname\EmployeeA, domainname\etc">

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width