An example of using asp+ to access a database

Source: Internet
Author: User
Tags button type
<%@ Page language= "VB"%>

<%@ Import namespace= "System.Data"%>
<%@ Import namespace= "System.Data.ADO"%>




<script language= "VB" runat= "Server" >
Sub Subbtn_onclick (Sender as Object, E as EventArgs)
Dim Connobj as ADOConnection
Dim Dtscmdobj as Adodatasetcommand
Dim Dtsobj as DataSet
Dim Str_sql as String
Dim conn_str As String
Str_sql = "SELECT * FROM table_name"
Conn_str = "dbq=" & Server.MapPath ("Database.mdb") &_
";D river={microsoft Access Driver (*.mdb)};"

Connobj = New adoconnection (conn_str)
Dtscmdobj = New Adodatasetcommand (str_sql, Connobj)
Dtsobj = New DataSet ()
Dtscmdob.filldataset (Dtsobj, "table_name")
Dtgrid. DataSource = Dtsobj. Tables ("table_name"). DefaultView
Dtgrid. DataBind ()
End Sub
</script>




<body>

<form action= "db.aspx" method= "POST" runat= "Server" >
<asp:button type= "Submit" id= "subbtn" text= "Run Query" runat= "Server"/>
</form>


<asp:datagrid id= "Dtgrid" headerstyle-font-bold= "True" tooltip= "data Grid provided with asp+" runat= "Server" Maintainviewstate= "false"/>

</body>


Related Article

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.