No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
5 Posted Topics
Hello I have a VB.NET application that needs to backup a database then restore to a new database in the same Server as I am upgrading an application and I want to retain the existing database. I create a blank database using the following: [code]cmdSA.CommandText = "CREATE DATABASE [newDatabase]" cmdSA.ExecuteNonQuery()[/code] … | |
Hello I have two tables a Master and Child. I want to return a recordset that has all of the Master records and any related child values. Sample Data: [INDENT][B]Master Table[/B] 'id' 'field1' 1 Test1 2 Test2 3 Test3 [B]Child Table[/B] 'id' 'masterID' 'field1' 1 2 Child1[/INDENT]The following code will … | |
Re: 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 database access plus MS Access sucks as a multi-user database. | |
Re: Hello I'm not sure why you need to store the data first. This works for me ... [code] dim checkLogin = from x in DataContext.table _ Where x.User = UserName.toString AND x.Password = Password.toString _ Select x if checkLogin.count = 1 then ' valid user else ' invalid user end … | |
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 find anything to replace it in VS 2008. Basically I want to create an About Box for my web … |
The End.