Click here to Skip to main content
16,017,922 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I used "forms" authentication mode for login.following are the codes in web.config file
XML
<authentication mode="Forms">
            <forms loginUrl="login.aspx" cookieless="UseUri" protection="All" timeout="90"></forms>
        </authentication>

I want to reteieve the userid after user login from other pages.
how to do that?
Posted

1 solution

Wanlambok wrote:
I want to reteieve the userid after user login from other pages.


Store it in the session, I guess. Your login.aspx seems the place to do that.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900