What you want to see on DotNetFunda.com ?
DotNetFunda.Com Logo
Twitter TwitterLinkedIn
YouTubeGoogle
 Online : 18459 |  Welcome, Guest!   Register  Login
 Home > Forums > ASP.NET > How to store the values in cookies without using forms authentication ...
Kavi.Sirius

How to store the values in cookies without using forms authentication

Replies: 1 | Posted by: Kavi.Sirius on 5/9/2012 | Category: ASP.NET Forums | Views: 378 | Status: [Member] | Points: 10  


hi,

Is there any possible to store the values in cookies without using the forms authentication

because in my application if user login their page, their username and password must be store in cookies.
so after they login means it directly go to home page.(not login page)

Thanks in advance.

Regards
Kavi.n


Reply | Reply with attachment | Alert Moderator

 Responses below this adGet hundreds of .NET Tips and Tricks videos

 Replies

Funda
Funda  
Posted on: 5/9/2012 8:39:50 AM
Level: Starter | Status: [Member] | Points: 25

Hi,
Step1:
Store Value in Cookie....
Response.Cookies["SA"]["PSU"] = userNAme;

Response.Cookies["SA"]["PSID"] = ID
;
Step 2:
Get the Value from Cookie....
if (Request.Cookies["SA"]["PSU"] != "Value" && Request.Cookies["SA"]["PSID"] == "1")

re direct to login page.

Note :
["SA"] will be the Cookie Name

Kavi.Sirius, if this helps please login to Mark As Answer. | Reply | Alert Moderator 

Reply - Please login to reply


Click here to login & reply

About Us | Contact Us | The Team | Advertise | Software Development | Write for us | Testimonials | Privacy Policy | Terms of Use | Link Exchange | Members | Go Top
General Notice: If you find plagiarised (copied) contents on this page, please let us know the original source along with your correct email id (to communicate) for further action.
Copyright © DotNetFunda.Com. All Rights Reserved. Copying or mimicking the site design and layout is prohibited. Logos, company names used here if any are only for reference purposes and they may be respective owner's right or trademarks. | 5/21/2013 11:25:56 AM