Windows authentication in classic ASP

Ask a Question related to ASP.NET Security, Design and Development.

  1. #1

    Default Windows authentication in classic ASP

    How can I simulate the usage of web.config in classic asp ?

    Can any one help with this ?

    thanks in advance,

    Nuno


    Nuno Filipe Guest

  2. Similar Questions and Discussions

    1. Sharing authorization/authentication between Classic ASP and ASP.NET pages?
      I have an administrative website that I've built that needs to incorporate both Classic ASP and ASP.NET pages. The site needs basic password...
    2. ASP.NET Authentication and Windows Authentication
      Hello, I'm developing a web application that will run on an Intranet. I'll use Windows Authentication, so users can access the application...
    3. Forms Authentication and classic ASP
      If I were you and I am not (Same first Name) :), I would start looking in a tool like reflector and find out the libraries that the...
    4. Making Classic, OS X, and Windows projector CD?
      Hi! I'm working on a project running MPEGs through a menu-driven Projector movie. I've got the Advance MPEG extra. I've created my movies for all...
    5. Forms authentication with Windows authentication
      Hi, I have an ASP.NET web site that uses IIS Basic Authentication and accesses an OLAP Server at various stages. The OLAP Server authentication...
  3. #2

    Default Re: Windows authentication in classic ASP

    What do you want to simulate? Windows authentication? You do that using IIS
    itself. You don't get all of the rich authentication features of ASP.NET
    without rolling your own. My question is, why simulate? Just use ASP.NET...

    --
    Chris Jackson
    Software Engineer
    Microsoft MVP - Windows XP
    Windows XP Associate Expert
    --
    More people read the newsgroups than read my email.
    Reply to the newsgroup for a faster response.
    (Control-G using Outlook Express)
    --

    "Nuno Filipe" <nfc2001@hotmail.com> wrote in message
    news:exP6UkHpDHA.1496@TK2MSFTNGP11.phx.gbl...
    > How can I simulate the usage of web.config in classic asp ?
    >
    > Can any one help with this ?
    >
    > thanks in advance,
    >
    > Nuno
    >
    >

    Chris Jackson Guest

  4. #3

    Default Re: Windows authentication in classic ASP

    "Chris Jackson" <chrisjATmvpsDOTorgNOSPAM> wrote in message
    news:Opy%23maLpDHA.2848@TK2MSFTNGP10.phx.gbl...
    > What do you want to simulate? Windows authentication? You do that using
    IIS
    > itself. You don't get all of the rich authentication features of ASP.NET
    > without rolling your own. My question is, why simulate? Just use
    ASP.NET...
    >
    I want to grant / deny access to diferent users on several directories of
    the application and my ideia was to put a web.config in each directory with
    the users configuration.
    It's a very large and complex application, that's why I don't port it to
    ASP.NET.

    How can I do this ?

    Thanks in advance,

    Nuno


    Nuno Filipe Guest

  5. #4

    Default Re: Windows authentication in classic ASP

    Well, you don't get web.config for ASP classic, but you can achieve the same
    result directly through the file system - selectively give access to the
    directory to the users or groups you need using NTFS ACLs.

    --
    Chris Jackson
    Software Engineer
    Microsoft MVP - Windows Shell/UI
    Windows XP Associate Expert
    --
    More people read the newsgroups than read my email.
    Reply to the newsgroup for a faster response.
    (Control-G using Outlook Express)
    --

    "Nuno Filipe" <nfc2001@hotmail.com> wrote in message
    news:uyo4shSpDHA.1656@tk2msftngp13.phx.gbl...
    > "Chris Jackson" <chrisjATmvpsDOTorgNOSPAM> wrote in message
    > news:Opy%23maLpDHA.2848@TK2MSFTNGP10.phx.gbl...
    > > What do you want to simulate? Windows authentication? You do that using
    > IIS
    > > itself. You don't get all of the rich authentication features of ASP.NET
    > > without rolling your own. My question is, why simulate? Just use
    > ASP.NET...
    > >
    >
    > I want to grant / deny access to diferent users on several directories of
    > the application and my ideia was to put a web.config in each directory
    with
    > the users configuration.
    > It's a very large and complex application, that's why I don't port it to
    > ASP.NET.
    >
    > How can I do this ?
    >
    > Thanks in advance,
    >
    > Nuno
    >
    >

    Chris Jackson Guest

  6. #5

    Default Re: Windows authentication in classic ASP

    You can also create an ISAPI filter to do the work (I've
    done this...)
    >-----Original Message-----
    >Well, you don't get web.config for ASP classic, but you
    can achieve the same
    >result directly through the file system - selectively
    give access to the
    >directory to the users or groups you need using NTFS
    ACLs.
    >
    >--
    >Chris Jackson
    >Software Engineer
    >Microsoft MVP - Windows Shell/UI
    >Windows XP Associate Expert
    >--
    >More people read the newsgroups than read my email.
    >Reply to the newsgroup for a faster response.
    >(Control-G using Outlook Express)
    >--
    >
    >"Nuno Filipe" <nfc2001@hotmail.com> wrote in message
    >news:uyo4shSpDHA.1656@tk2msftngp13.phx.gbl...
    >> "Chris Jackson" <chrisjATmvpsDOTorgNOSPAM> wrote in
    message
    >> news:Opy%23maLpDHA.2848@TK2MSFTNGP10.phx.gbl...
    >> > What do you want to simulate? Windows
    authentication? You do that using
    >> IIS
    >> > itself. You don't get all of the rich authentication
    features of ASP.NET
    >> > without rolling your own. My question is, why
    simulate? Just use
    >> ASP.NET...
    >> >
    >>
    >> I want to grant / deny access to diferent users on
    several directories of
    >> the application and my ideia was to put a web.config
    in each directory
    >with
    >> the users configuration.
    >> It's a very large and complex application, that's why
    I don't port it to
    >> ASP.NET.
    >>
    >> How can I do this ?
    >>
    >> Thanks in advance,
    >>
    >> Nuno
    >>
    >>
    >
    >
    >.
    >
    Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139