Login page with Basic authentication (newbie)

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

  1. #1

    Default Login page with Basic authentication (newbie)

    Hello,

    I am using ASP.Net with Visual Basic.

    I have a directory that has Basic Authentication turned on, which is working
    fine. The problem with this login, is that all it ask for is the login and
    password. My users call me becuase they think they can't log in, but they
    are forgetting to type their domain name (MyDomainName\UserHandle). I found
    a web site in our organization that has NT Authentication, but they have
    there own page for the login and the page gives instructions for loging into
    the site. Unfortunately, this site is maintained by an outside vendor.

    My question is how can I create my own login page for Basic Authentication.

    --
    Thanks in advance,
    Steven


    Steven K0 Guest

  2. Similar Questions and Discussions

    1. Strange problem with Forms authentication: After successfull login, login page is still displayed
      Hi there I have a quite strange problem with my ASP.NET-Application. The application has being deployed one year ago and worked fine till last...
    2. OWA authentication via Login Page using ASP.Net
      Hi, first of all sorry for the cross posting. i have a problem with an ASP.NET application that requires to redirect the user to an OWA URL (for...
    3. Basic authentication without browser login window
      Hello, I have a problem with basic windows authentication in IIS6. As a developer I'm requested to implement windows authentication on my web...
    4. Authentication forms and SSL on the login page
      Hi all, I'm tryiing to set up security for a ASP.NET web application in order to force all the users to go to a login page with an SSL connection....
    5. Authentication Keeps returning to Login Page
      I have the following problem: my web.config file (see below) protects the entire website and when a user tries to go to a page they are...
  3. #2

    Default Re: Login page with Basic authentication (newbie)

    Hi Steven,

    You should use Forms Authentication if you want your own login page. In this
    case, you may use Windows Auth (Basic) by accessing the AD API.
    Here is an example of this:

    [url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnnetsec/html/SecNetHT02.asp?frame=true[/url]

    Regards,
    Hernan de Lahitte
    [url]http://clariusconsulting.net/hdl[/url]

    "Steven K0" <stroy@api.com> wrote in message
    news:OFhmIRQPFHA.3704@TK2MSFTNGP12.phx.gbl...
    > Hello,
    >
    > I am using ASP.Net with Visual Basic.
    >
    > I have a directory that has Basic Authentication turned on, which is
    > working fine. The problem with this login, is that all it ask for is the
    > login and password. My users call me becuase they think they can't log
    > in, but they are forgetting to type their domain name
    > (MyDomainName\UserHandle). I found a web site in our organization that
    > has NT Authentication, but they have there own page for the login and the
    > page gives instructions for loging into the site. Unfortunately, this
    > site is maintained by an outside vendor.
    >
    > My question is how can I create my own login page for Basic
    > Authentication.
    >
    > --
    > Thanks in advance,
    > Steven
    >

    Hernan de Lahitte 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