Click here to Skip to main content
15,891,689 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Is there any sessions in asp.net c# like PHP.I mean which is not store session-id in client machine and also session id not show in URL like cookie less session.I dont want to use cookie less session in my application.I want sessions like PHP which is not store session id in client machine and also not show session id in URL is there any way?
Posted
Comments
Laiju k 29-Oct-14 0:35am    
asp.net not show session id in URL

1 solution

Yes In asp.net also session is present, Which will not show in the URL.
In this way we can assign session in asp.net C#.
C#
Session["session_name"] = "session_data";


For More Details
http://msdn.microsoft.com/en-us/library/ms178581(v=vs.100).aspx[^]
Exploring Session in ASP.NET[^]

For more Links please Google.
 
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