<%@ Page language= "vb"%>
<%@ Import Namespace = "System"%>
<%@ Import Namespace = "System.Web.UI"%>
<%@ Import Namespace = "system.web"%>
<script runat= "Server" >
Sub Page_Load (ByVal sender as System.Object, ByVal e as System.EventArgs)
If Request.ServerVariables ("Request_method"). ToString () = "POST" Then
Dim ConnStr as String
ConnStr = "Provider=Microsoft.Jet.OLEDB.4.0;Data source=" + Server.MapPath ("Test.mdb")
Dim cn as New System.Data.OleDb.OleDbConnection (CONNSTR)
Dim strSQL as String = INSERT into TestTable (title,description) VALUES (' "_
+ Request.Form ("Title"). ToString () + "', '" + Request.Form ("Desc"). ToString () + "')"
cn. Open ()
Dim cmd as New System.Data.OleDb.OleDbCommand (strSQL, CN)
Cmd. ExecuteNonQuery ()
cn. Close ()
cn. Dispose ()
Cmd. Dispose ()
End If
End Sub
</script>
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.