Hi guys, I've been given the painful task of migrating a site from ASP to ASP.NET, and I need to install a completely new login system. I'm simply going with the login controls provided, as the website isn't really that complex, and shouldn't need anything more advanced than what is on offer. You only need to be logged in to see the members area, however the rest of the site is open to the public.
I've got a log in up and running, but the only problem is, I'm not sure how to stay logged in. I'm assuming it's the use of cookies, however I would really have no idea. Here is my code to log in:
1 <script runat="server">
2 Function SiteSpecificAuthenticationMethod(ByVal UserName As String, ByVal Password As String) As Boolean
3
Go to the complete details ...