Submit SQL-1 with Table forms

Source: Internet
Author: User
Tags insert trim
<%
' Extract the value from the form
FName = Request.Form ("FName")
LName = Request.Form ("LName")
Age = Request.Form (' age ')

' Create SQL statements
ISTR = "INSERT into UData (FName, LName, age)"
ISTR = ISTR & "VALUES ("
ISTR = ISTR & "'" & FName & "',"
ISTR = ISTR & "'" & LName & "',"
ISTR = ISTR & Age & ")"

If Trim (fName <> "") Then
Response.Write (ISTR & "<BR>")
Else
%>

<body>
<form name=f method=post action= "listing1.asp" >
Gimme your:<br>
Name: <input type=text name= "FName" ><br>
Last Name: <input type=text name= "LName" ><br>
Age: <input type=text name= ' age ' ><br>
<input type= "Submit" value= "Submit" >
</form>
</body>

<%
End If
%>


List B: Use Request.Form to easily build SQL strings.

<%
ISTR = "INSERT INTO UData"
Vstr = "VALUES ("
Nstr = "("

' Looping through a form collection and building up parts of the SQL statement
For each x in Request.Form
' Create a list of field names
Nstr = nstr & x & ","
' Create a list of field values
If UCase (x) = "Age" Then
Vstr = vstr & Request.Form (x) & ","
Else
Vstr = vstr & "'" & Request.Form (x) & "',"
End If
Next

"The end of the", "removed from the string we established
Vstr = Left (Vstr, Len (VSTR)-2) & ")"
Nstr = Left (Nstr, Len (NSTR)-2) & ")"

' Assemble the SQL statements.
ISTR = ISTR & Nstr & Vstr

If Trim (Request ("FName")) >> "Then
Response.Write (ISTR & ">BR>")
Else
%>

<body>
<form name=f method=post action= "List 2.asp" >
Gimme your:<br>
Name: <input type=text name= "FName" ><br>
Last Name: <input type=text name= "LName" ><br>
Age: <input type=text name= ' age ' ><br>
<input type= "Submit" value= "Submit" >
</form>
</body>

<%
End If
%>





Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.