session authentication for users

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

  1. #1

    Default session authentication for users

    Hi,

    I need to know the best way to program a login page that will only
    authenticate users when they click the login button at the top of our
    page. Once they are authenticated they will be able to go through the
    process of ordering, etc. I am not very well versed at ASP.NET but I
    don't think I want to use Forms Authentication for this. Is there a
    simpler way to authenticate users? Could someone please help me with
    this code in ASP.NET/VB.NET?
    Thank you.

    TG
    TG Guest

  2. Similar Questions and Discussions

    1. CFLDAP users authentication
      Hi all, I'm trying to authenticate a user with Active Directory. I want to use the CFLDAP tag. I got this example from the Macromedia website...
    2. window authentication against ADAM users
      Hi, Has anyone know how to do window authentication against ADAM users? Thanks for any reply Ann
    3. Authentication for anonymous users?
      What should I do for realising the following task: Anonymous users can browse my ASP.net site( limited number of pages), but when the try to access...
    4. Form Authentication in ASP.NET for multiple users
      Hi Can I implement Form Authentication in ASP.NET for different users(Number of different users is not fixed). Regards Vinayak
    5. Authentication with NT Users
      Hi, Can someone tell me how I create a login page which authenticates users against the servers user manager. I want the login to be a form in...
  3. #2

    Default RE: session authentication for users

    Forms Authentication is nice. Once the user is aunthenticated you can place
    web.config files in the folders you want secured only for those who are
    logged in. Rather than go through the whole process of setting it up, here is
    a link with plenty of information on this. Take a look:

    [url]http://www.codeproject.com/aspnet/formsroleauth.asp[/url]

    HTH



    "TG" wrote:
    > Hi,
    >
    > I need to know the best way to program a login page that will only
    > authenticate users when they click the login button at the top of our
    > page. Once they are authenticated they will be able to go through the
    > process of ordering, etc. I am not very well versed at ASP.NET but I
    > don't think I want to use Forms Authentication for this. Is there a
    > simpler way to authenticate users? Could someone please help me with
    > this code in ASP.NET/VB.NET?
    > Thank you.
    >
    > TG
    >
    ENIZIN 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