Results 1 to 19 of 19

Thread: ASP & SQL Writing (Microsoft SQL Server 2008)

Threaded View

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Apr 2006
    Posts
    109

    Exclamation ASP & SQL Writing (Microsoft SQL Server 2008)

    Hello,

    How can I insert the First Name & Last Name TextBox Data into the database?

    Code:
    <html>
    
    <head>
    
    <title>New Member - OBMFO</title>
    
    </head>
    
    <body>
    
    Your first name is 
    
    <&#37;
    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>
    Please HELP Thanks
    Last edited by Kawser; Feb 3rd, 2011 at 01:18 AM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width