Form's Authentication

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

  1. #1

    Default Form's Authentication

    Hi !

    I am using Forms authentication in my web application , but after
    authenticating used it is again redirecting to Login page.....

    How to resolve that issue.

    Thanks
    Ankur



    Ankur Goyal Guest

  2. Similar Questions and Discussions

    1. Help Making a form's Submit button into a Hyperlink,Please
      On my real estate website, I would like to require visitors to sign a guest book before being able to link to the county MLS system to search for...
    2. Access child form's data
      This can be handled with JAVA Script, here is an outline: (1) in the parent create property functions that will set the values you want updated...
    3. Clearing form's data
      I have a rather large unbound form with many combo boxes and text boxes for data entry and then a command button to execute validation and entry...
    4. Set form's RecordSource to Btrieve without ODBC
      I have a form where I would like to set the recordsource to a Btrieve 6.15 table. The company that designed this table for our database did some...
    5. Detecting a form's POST
      Say I've got a page - myPage.asp - that expects to see the results of a form's POST operation. If it comes from the form, all is fine. However,...
  3. #2

    Default Re: Form's Authentication

    This c# instruction may help:
    FormsAuthentication.SetAuthCookie(txtLogonUserName .Text,false);

    The above instruction tells the system that your login page accepts your
    user as a valid user. You then redirect your user to wherever location s/he
    wishes to arrive.

    John


    "Ankur Goyal" <ankur@proteans.com> wrote in message
    news:%23KJ$g650EHA.1296@TK2MSFTNGP10.phx.gbl...
    > Hi !
    >
    > I am using Forms authentication in my web application , but after
    > authenticating used it is again redirecting to Login page.....
    >
    > How to resolve that issue.
    >
    > Thanks
    > Ankur
    >
    >
    >

    WJ 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