Forum: ASP.NET Jun 1st, 2008 |
| Replies: 9 Views: 988 Re: Login page Why not use Session Variables? Once the user is verified create a Session variable (e.g. Session("Verified") = "Yes"). In the Page Load check if the value is Yes. Much easier and quicker than a... |
Forum: ASP.NET Jun 1st, 2008 |
| Replies: 2 Views: 559 Re: Comparing data from database using LINQ Hello
I'm not sure why you need to store the data first. This works for me ...
dim checkLogin = from x in DataContext.table _
Where x.User = UserName.toString AND x.Password =... |
Forum: ASP.NET Jun 1st, 2008 |
| Replies: 0 Views: 421 Add version number to ASP.NET app - VS 2008 Hello
I am re-writing an application from VS2003 to VS2008 (.NET 3.5). In the older version there was a file named 'AssemblyInfo.vb' that held version numbers, copyright information etc.
I can't... |