Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,027

HOME > ASP.NET > ASP.NET Microsoft Access (System.Data.OleDb) > ASP.NET Microsoft Access Multiple Checkbox Delete Record



Clound SSD Virtual Server

ASP.NET Microsoft Access Multiple Checkbox Delete Record

ASP.NET Microsoft Access Multiple Checkbox Delete Record เป็นตัวอย่างการเขียน ASP.NET กับ Microsoft Access ในการลบข้อมูลในฐานข้อมูล โดยในตัวอย่างมีการนำ Control ของ Checkbox เพื่อให้สามารถลบข้อมูลได้หลายรายการ

Instance NameSpace

VB.NET
Imports System.Data 
Imports System.Data.OleDb 


ASP.NET & System.Data.OleDb

Language Code : VB.NET || C#

AspNetAccessMultiDeleteRecord.aspx

<%@ Import Namespace="System.Data"%>
<%@ Import Namespace="System.Data.OleDb"%>
<%@ Page Language="VB" %>
<script runat="server">

	Dim objConn As OleDbConnection
	Dim objCmd As OleDbCommand
	Dim strSQL As String
	Dim dtReader As OleDbDataReader

    Sub Page_Load(sender As Object, e As EventArgs)
		Dim strConnString As String
		strConnString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source="&Server.MapPath("database/mydatabase.mdb")&";Jet OLEDB:Database Password=;"
		objConn = New OleDbConnection(strConnString)
		objConn.Open()
		
		IF Not Page.IsPostBack() Then
			BindData()
		End IF

		Me.btnDelete.Attributes.Add("OnClick", "return confirm('Delete Record?');")

    End Sub

	Sub BindData()
		
		strSQL = "SELECT * FROM customer"		
		objCmd = New OleDbCommand(strSQL, objConn)
		dtReader = objCmd.ExecuteReader()
		
		'*** BindData to Repeater ***'
		myRepeater.DataSource = dtReader
		myRepeater.DataBind()

		dtReader.Close()
		dtReader = Nothing

	End Sub

	Sub Page_UnLoad()
		objConn.Close()
		objConn = Nothing
	End Sub

    Sub btnDelete_OnClick(sender As Object, e As EventArgs)
        Dim chkDel As CheckBox
        Dim lblID As Label
        Dim i As Integer
        For i = 0 To myRepeater.Items.Count - 1
            chkDel = myRepeater.Items(i).FindControl("chkDel")
            lblID = myRepeater.Items(i).FindControl("lblCustomerID")
            IF chkDel.Checked = True Then
				strSQL = "DELETE FROM customer WHERE CustomerID = '"& lblID.Text &"' "
				objCmd = New OleDbCommand(strSQL, objConn)
				objCmd.ExecuteNonQuery()
            End IF
        Next
		BindData()
    End Sub

    Sub myRepeater_ItemDataBound(ByVal sender As Object, ByVal e As RepeaterItemEventArgs) Handles myRepeater.ItemDataBound

			'*** CustomerID ***'
			Dim lblCustomerID As Label = CType(e.Item.FindControl("lblCustomerID"),Label)
			IF Not IsNothing(lblCustomerID) Then
				lblCustomerID.Text = e.Item.DataItem("CustomerID")
			End IF

			'*** Name ***'
			Dim lblName As Label = CType(e.Item.FindControl("lblName"),Label)
			IF Not IsNothing(lblName) Then
				lblName.Text = e.Item.DataItem("Name")
			End IF

			'*** Email ***'
			Dim lblEmail As Label = CType(e.Item.FindControl("lblEmail"),Label)
			IF Not IsNothing(lblEmail) Then
				lblEmail.Text = e.Item.DataItem("Email")
			End IF

			'*** CountryCode ***'
			Dim lblCountryCode As Label = CType(e.Item.FindControl("lblCountryCode"),Label)
			IF Not IsNothing(lblCountryCode) Then
				lblCountryCode.Text = e.Item.DataItem("CountryCode")
			End IF

			'*** Budget ***'
			Dim lblBudget As Label = CType(e.Item.FindControl("lblBudget"),Label)
			IF Not IsNothing(lblBudget) Then
				lblBudget.Text = e.Item.DataItem("Budget")
			End IF

			'*** Used ***'
			Dim lblUsed As Label = CType(e.Item.FindControl("lblUsed"),Label)
			IF Not IsNothing(lblUsed) Then
				lblUsed.Text = e.Item.DataItem("Used")
			End IF
			
    End Sub

</script>
<html>
<head>
<title>ThaiCreate.Com ASP.NET - Microsoft Access</title>
</head>
<body>
	<form id="form1" runat="server">
    <asp:Repeater id="myRepeater" runat="server">
	<HeaderTemplate>
		<table border="1">
			<tr>
				<th>CustomerID</th>
				<th>Name</th>
				<th>Email</th>
				<th>CountryCode</th>
				<th>Budget</th>
				<th>Used</th>
				<th>Delete</th>
			</tr>
	</HeaderTemplate>
	<ItemTemplate>
		<tr>
			<td align="center"><asp:Label id="lblCustomerID" runat="server"></asp:Label></td>
			<td><asp:Label id="lblName" runat="server"></asp:Label></td>
			<td><asp:Label id="lblEmail" runat="server"></asp:Label></td>
			<td align="center"><asp:Label id="lblCountryCode" runat="server"></asp:Label></td>
			<td align="right"><asp:Label id="lblBudget" runat="server"></asp:Label></td>
			<td align="right"><asp:Label id="lblUsed" runat="server"></asp:Label></td>
			<td align="center"><asp:CheckBox id="chkDel" runat="server"></asp:Checkbox></td>			
		</tr>			
	</ItemTemplate>
	</asp:Repeater>
	</table>
	<br />
	<asp:Button id="btnDelete" onclick="btnDelete_OnClick" runat="server" Text="Delete"></asp:Button>
	</form>
</body>
</html>









Screenshot

ASP.NET & Microsoft Access



ASP.NET System.Data.OleDb - Parameter Query



Microsoft Access Relation CasCade


   
Share


ช่วยกันสนับสนุนรักษาเว็บไซต์ความรู้แห่งนี้ไว้ด้วยการสนับสนุน Source Code 2.0 ของทีมงานไทยครีเอท


ลองใช้ค้นหาข้อมูล


   


Bookmark.   
       
  By : ThaiCreate.Com Team (บทความเป็นลิขสิทธิ์ของเว็บไทยครีเอทห้ามนำเผยแพร่ ณ เว็บไซต์อื่น ๆ)
  Score Rating :  
  Create/Update Date : 2009-10-17 10:55:30 / 2017-03-29 09:50:12
  Download : Download  ASP.NET Microsoft Access Multiple Checkbox Delete Record
 Sponsored Links / Related

 
ASP.NET Microsoft Access Connect to Database
Rating :

 
ASP.NET Microsoft Access List Table Properties
Rating :

 
ASP.NET Microsoft Access List Record
Rating :

 
ASP.NET Microsoft Access & Odbc (System.Data.Odbc)
Rating :

 
ASP.NET Microsoft Access Random Record
Rating :

 
ASP.NET Microsoft Access List Record Paging/Pagination
Rating :

 
ASP.NET Microsoft Access Search Record
Rating :

 
ASP.NET Microsoft Access Search Record Paging/Pagination
Rating :

 
ASP.NET Microsoft Access Add/Insert Record
Rating :

 
ASP.NET Microsoft Access Add-Insert Multiple Record
Rating :

 
ASP.NET Microsoft Access Check Already Exists Add/Insert Record
Rating :

 
ASP.NET Microsoft Access Transaction (BeginTransaction,Commit,Rollback)
Rating :

 
ASP.NET Microsoft Access Edit/Update Record
Rating :

 
ASP.NET Microsoft Access Delete Record
Rating :

 
ASP.NET Microsoft Access and GridView, DataSource
Rating :

 
ASP.NET Microsoft Access Database Class
Rating :

 
ASP.NET Microsoft Access Database Class (Visual Studio .Net 2003 - .NET 1.1)
Rating :

 
ASP.NET Microsoft Access Database Class (Visual Studio 2005,2008,2010 - .NET 2.0,3.5,4.0)
Rating :

 
ASP.NET Access BLOB Binary Data and Parameterized Query
Rating :


ThaiCreate.Com Forum


Comunity Forum Free Web Script
Jobs Freelance Free Uploads
Free Web Hosting Free Tools

สอน PHP ผ่าน Youtube ฟรี
สอน Android การเขียนโปรแกรม Android
สอน Windows Phone การเขียนโปรแกรม Windows Phone 7 และ 8
สอน iOS การเขียนโปรแกรม iPhone, iPad
สอน Java การเขียนโปรแกรม ภาษา Java
สอน Java GUI การเขียนโปรแกรม ภาษา Java GUI
สอน JSP การเขียนโปรแกรม ภาษา Java
สอน jQuery การเขียนโปรแกรม ภาษา jQuery
สอน .Net การเขียนโปรแกรม ภาษา .Net
Free Tutorial
สอน Google Maps Api
สอน Windows Service
สอน Entity Framework
สอน Android
สอน Java เขียน Java
Java GUI Swing
สอน JSP (Web App)
iOS (iPhone,iPad)
Windows Phone
Windows Azure
Windows Store
Laravel Framework
Yii PHP Framework
สอน jQuery
สอน jQuery กับ Ajax
สอน PHP OOP (Vdo)
Ajax Tutorials
SQL Tutorials
สอน SQL (Part 2)
JavaScript Tutorial
Javascript Tips
VBScript Tutorial
VBScript Validation
Microsoft Access
MySQL Tutorials
-- Stored Procedure
MariaDB Database
SQL Server Tutorial
SQL Server 2005
SQL Server 2008
SQL Server 2012
-- Stored Procedure
Oracle Database
-- Stored Procedure
SVN (Subversion)
แนวทางการทำ SEO
ปรับแต่งเว็บให้โหลดเร็ว


Hit Link
   







Load balance : Server 03
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่