Stop User Credentials Dialogue

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

  1. #1

    Default Stop User Credentials Dialogue

    Hi All,

    I have a web app on our intranet, and when an employee goes to the main
    page, it authenticates via Windows Authentication when the user fills in the
    user credentials dialog popup. I grab their name from wp.Identity.Name
    (WindowsPrincipal), and look the user up in a SQL Server database table. So
    far, so good.

    They make it to the main page, but virtually every other page they navigate
    to the user credentials dialog pops up again. All they do is click
    linkbuttons that navigate to another page using
    Response.Redirect("Page2.aspx", False). Even if they fill in the dialog
    correctly, it keeps prompting them up to 3 times, then errors out (no
    discernible error message).

    However, when I log in as myself using their computer, I have no problems
    using the app. The app initially prompts me like them with the user
    credentials dialog, but once I fill it out it doesn't pop up again. So, why
    would it keep prompting them?

    If it helps, here are the authentication/authorization settings in the
    web.config file:
    <authentication mode="Windows"/>
    <identity impersonate="true"/>
    <authorization>
    <deny users="?" />
    </authorization>

    Thank you for any help you can provide.
    Richard

    Richard Guest

  2. Similar Questions and Discussions

    1. Web Application User Credentials
      We are in the early planning stage of a new web (ASP.NET) application, are currently determining the best strategy for managing users in this...
    2. Passing user credentials from ASP.NET to Web Service
      We have an ASP.NET application which needs to call Web Service on another machine using end user's account. The configuration is as follows: *...
    3. User Credentials problem with WebService that uses FileIO....Help!!??
      I am having some serious problems with a WebService that I created that drops a file to a local directory. I have the WebService pointed outside so...
    4. how do i stop one user accessing certain files in XP
      Both me and my brother use my computer and i have set him up a limited user account on the computer but he still has access to all the files on the...
    5. NSNumberFormatter doesn't stop a user entering letters?
      Hi, I have a NSPanel with a NSForm which has some NSNumberFormatters attached to it's NSFormCells. It seems that the NSNumberFormatter doesn't...
  3. #2

    Default RE: Stop User Credentials Dialogue

    I believe I solved my own problem. I commented out '<identity
    impersonate="true"/>' in web.config and it seems to be working fine. Hope
    this was it for sure!

    "Richard" wrote:
    > Hi All,
    >
    > I have a web app on our intranet, and when an employee goes to the main
    > page, it authenticates via Windows Authentication when the user fills in the
    > user credentials dialog popup. I grab their name from wp.Identity.Name
    > (WindowsPrincipal), and look the user up in a SQL Server database table. So
    > far, so good.
    >
    > They make it to the main page, but virtually every other page they navigate
    > to the user credentials dialog pops up again. All they do is click
    > linkbuttons that navigate to another page using
    > Response.Redirect("Page2.aspx", False). Even if they fill in the dialog
    > correctly, it keeps prompting them up to 3 times, then errors out (no
    > discernible error message).
    >
    > However, when I log in as myself using their computer, I have no problems
    > using the app. The app initially prompts me like them with the user
    > credentials dialog, but once I fill it out it doesn't pop up again. So, why
    > would it keep prompting them?
    >
    > If it helps, here are the authentication/authorization settings in the
    > web.config file:
    > <authentication mode="Windows"/>
    > <identity impersonate="true"/>
    > <authorization>
    > <deny users="?" />
    > </authorization>
    >
    > Thank you for any help you can provide.
    > Richard
    >
    Richard 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