Hello,
How can I insert the First Name & Last Name TextBox Data into the database?
Please HELP ThanksCode:<html> <head> <title>New Member - OBMFO</title> </head> <body> Your first name is <% FirstName = request("firstname") response.write FirstName + " " LastName = request("lastname") response.write LastName %> <% ConnectionString = "Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=Registration;Data Source=KAWSERHOSSAIN\SQLEXPRESS" SQL = "INSERT INTO [Registration Table] (First) VALUES ('Hello World')" %> </body> </html>![]()




Reply With Quote