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,025

HOME > C# (.NET) > ASP.NET Microsoft Access (System.Data.OleDb) > (C#) ASP.NET Microsoft Access Delete Record



Clound SSD Virtual Server

(C#) ASP.NET Microsoft Access Delete Record

(C#) ASP.NET Microsoft Access Delete Record เป็นตัวอย่างการเขียน ASP.NET กับ Microsoft Access ในการลบข้อมูลในฐานข้อมูล

Instance NameSpace

C#
Using System.Data; 
Using System.Data.OleDb;


ASP.NET & System.Data.OleDb

Language Code : VB.NET || C#

AspNetAccessDeleteRecord.aspx

<%@ Page Language="C#" Debug="true" %>
<%@ import Namespace="System.Data" %>
<%@ import Namespace="System.Data.OleDb" %>
<script runat="server">

	OleDbConnection objConn = new OleDbConnection();
	OleDbCommand objCmd = new OleDbCommand();
	OleDbDataReader dtReader;
	String strSQL;

    void Page_Load(object sender,EventArgs e)
	{
		String strConnString;
		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(!Page.IsPostBack)
		{
			BindData();
		}
    }

	void BindData()
	{
		String strSQL;
		strSQL = "SELECT * FROM customer";

		OleDbDataReader dtReader;
		objCmd = new OleDbCommand(strSQL, objConn);
		dtReader = objCmd.ExecuteReader();
		
		//*** BindData to Repeater ***//
		myRepeater.DataSource = dtReader;
		myRepeater.DataBind();

		dtReader.Close();
		dtReader = null;

	}

	void Page_UnLoad()
	{
		objConn.Close();
		objConn = null;
	}


    void myRepeater_ItemCommand(Object source, RepeaterCommandEventArgs e)
	{
		if(e.CommandName == "Delete")
		{
			//*** CustomerID ***//
			Label lblCustomerID = (Label)(e.Item.FindControl("lblCustomerID"));
			strSQL = "DELETE FROM customer WHERE CustomerID = '"+ lblCustomerID.Text +"' ";
			objCmd = new OleDbCommand(strSQL, objConn);
			objCmd.ExecuteNonQuery();
			BindData();
		}
    }

    protected void myRepeater_ItemDataBound(Object sender, RepeaterItemEventArgs e)
	{

			//*** CustomerID ***//
			Label lblCustomerID = (Label)(e.Item.FindControl("lblCustomerID"));
			if (lblCustomerID != null)
			{
				lblCustomerID.Text = (string)DataBinder.Eval(e.Item.DataItem, "CustomerID");
			}

			//*** Email ***//
			Label lblName = (Label)(e.Item.FindControl("lblName"));
			if (lblName != null)
			{
				lblName.Text = (string)DataBinder.Eval(e.Item.DataItem, "Name");
			}

			//*** Name ***//
			Label lblEmail = (Label)(e.Item.FindControl("lblEmail"));
			if (lblEmail != null)
			{
				lblEmail.Text = (string)DataBinder.Eval(e.Item.DataItem, "Email");
			}

			//*** CountryCode ***//
			Label lblCountryCode = (Label)(e.Item.FindControl("lblCountryCode"));
			if (lblCountryCode != null)
			{
				lblCountryCode.Text = (string)DataBinder.Eval(e.Item.DataItem, "CountryCode");
			}

			//*** Budget ***//
			Label lblBudget = (Label)(e.Item.FindControl("lblBudget"));
			if (lblBudget != null)
			{
				lblBudget.Text = DataBinder.Eval(e.Item.DataItem, "Budget").ToString();
			}

			//*** Used ***//
			Label lblUsed = (Label)(e.Item.FindControl("lblUsed"));
			if (lblUsed != null)
			{
				lblUsed.Text = DataBinder.Eval(e.Item.DataItem, "Used").ToString();
			}
			
			//*** Delete ***//
			LinkButton lnkDelete = (LinkButton)(e.Item.FindControl("lnkDelete"));
			if (lnkDelete != null)
			{
				lnkDelete.Attributes.Add("OnClick", "return confirm('Delete Record?');");
			}
			
    }

</script>
<html>
<head>
<title>ThaiCreate.Com ASP.NET - Microsoft Access</title>
</head>
<body>
	<form id="form1" runat="server">
    <asp:Repeater id="myRepeater" runat="server"
	OnItemCommand="myRepeater_ItemCommand"
	OnItemDataBound="myRepeater_ItemDataBound">
	<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="right"><asp:LinkButton id="lnkDelete" CommandName="Delete" runat="server">Delete</asp:LinkButton></td>			
		</tr>			
	</ItemTemplate>
	</asp:Repeater>
	</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 : 2008-10-26 22:45:40 / 2017-03-29 09:49:59
  Download : Download  (C#) ASP.NET Microsoft Access Delete Record
 Sponsored Links / Related

 
(C#) ASP.NET Microsoft Access Connect to Database
Rating :

 
(C#) ASP.NET Microsoft Access List Table Properties
Rating :

 
(C#) ASP.NET Microsoft Access List Record
Rating :

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

 
(C#) ASP.NET Microsoft Access Random Record
Rating :

 
(C#) ASP.NET Microsoft Access List Record Paging/Pagination
Rating :

 
(C#) ASP.NET Microsoft Access Search Record
Rating :

 
(C#) ASP.NET Microsoft Access Search Record Paging/Pagination
Rating :

 
(C#) ASP.NET Microsoft Access Add/Insert Record
Rating :

 
(C#) ASP.NET Microsoft Access Add-Insert Multiple Record
Rating :

 
(C#) ASP.NET Microsoft Access Check Already Exists Add/Insert Record
Rating :

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

 
(C#) ASP.NET Microsoft Access Edit/Update Record
Rating :

 
(C#) ASP.NET Microsoft Access Delete Record
Rating :

 
(C#) ASP.NET Microsoft Access Multiple Checkbox Delete Record
Rating :

 
(C#) ASP.NET Microsoft Access and GridView, DataSource
Rating :

 
(C#) ASP.NET Microsoft Access Database Class
Rating :

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

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

 
(C#) 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 01
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 อัตราราคา คลิกที่นี่