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

  1. #1

    Default I need an open page

    I have been working on implementing forms based security but I need 1 page
    that is open to the public to create a new account.

    How can I specify one page not to be checked for security?

    Thanks in advance.

    Tommy


    Tommy Martin Guest

  2. Similar Questions and Discussions

    1. To open a page of a PDF
      Hi. I have SDK 6.0. The document only has bookmarks. It no has named destinations. Is it possible to open a page from a vb6 aplicattion, at a...
    2. .htm page open in .htm
      I have tried frames to open a .htm in the middle of a page. The menu is not opening properly now. Is there another way to open a .htm page in...
    3. Can I open a page as a popup using GOTO DETAIL PAGE
      ok, i have posted this before but i didnt get any response. I have failed to find an answer anywhere else. I want to open a GOTO DETAIL page...
    4. the page can not open
      the web form works for every body .... except for 1 person when he hit the submit button then it display the page can not display ... ex as...
    5. Open a page with php
      I need to be able to open different pages depending upon which botton was selected on a form. I can't find how to do this any help would be great. ...
  3. #2

    Default I need an open page

    Something like this in the web.config

    <location path="yourunsecurepage.aspx">
    <system.web>
    <authorization>
    <allow users="*" />
    </authorization>
    </system.web>
    </location>



    >-----Original Message-----
    >I have been working on implementing forms based security
    but I need 1 page
    >that is open to the public to create a new account.
    >
    >How can I specify one page not to be checked for
    security?
    >
    >Thanks in advance.
    >
    >Tommy
    >
    >
    >.
    >
    Joe Audette Guest

  4. #3

    Default Re: I need an open page

    Works great!! Thanks.

    Tommy

    "Joe Audette" <respondtojoe_audette@yahoo.com> wrote in message
    news:0a4001c3c3ea$85626e90$a501280a@phx.gbl...
    > Something like this in the web.config
    >
    > <location path="yourunsecurepage.aspx">
    > <system.web>
    > <authorization>
    > <allow users="*" />
    > </authorization>
    > </system.web>
    > </location>
    >
    >
    >
    >
    > >-----Original Message-----
    > >I have been working on implementing forms based security
    > but I need 1 page
    > >that is open to the public to create a new account.
    > >
    > >How can I specify one page not to be checked for
    > security?
    > >
    > >Thanks in advance.
    > >
    > >Tommy
    > >
    > >
    > >.
    > >

    Tommy Martin 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