(C#) ASP.NET MySQL Edit/Update Record       | 
   
 
			  
			  
              (C#)  ASP.NET MySQL Edit/Update Record เป็นตัวอย่างการเขียน ASP.NET กับ MySQL ในการเรียกข้อมูลจากฐานข้อมูลมาแก้ไข 
 
Instance NameSpace 
 
C#Using System.Data; 
Using MySql.Data.MySqlClient;  
 
ASP.NET & MySql.Data.MySqlClient 
 
Language Code : VB.NET ||   C# 
 
AspNetMySQLEditListRecord.aspx 
 
<%@ Import Namespace="System.Data"%>
<%@ Import Namespace="MySql.Data.MySqlClient"%>
<%@ Page Language="C#" Debug="true" %>
<script runat="server">
	MySqlConnection objConn;
	MySqlCommand objCmd;
    void Page_Load(object sender,EventArgs e)
	{
		String strConnString;
		strConnString = "Server=localhost;User Id=root; Password=root; Database=mydatabase; Pooling=false";
		objConn = new MySqlConnection(strConnString);
		objConn.Open();
		BindData();
    }
	void BindData()
	{
		String strSQL;
		strSQL = "SELECT * FROM customer";
		MySqlDataReader dtReader;
		objCmd = new MySqlCommand(strSQL, objConn);
		dtReader = objCmd.ExecuteReader();
		
		//*** BindData to Repeater ***//
		myRepeater.DataSource = dtReader;
		myRepeater.DataBind();
		dtReader.Close();
		dtReader = null;
	}
	void Page_UnLoad()
	{
		objConn.Close();
		objConn = null;
	}
    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();
		}
		//*** Hyperlink ***//
		HyperLink hplEdit = (HyperLink)(e.Item.FindControl("hplEdit"));
		if (hplEdit != null)
		{
				hplEdit.Text = "Edit";
				hplEdit.NavigateUrl = "AspNetMySqlEditForm.aspx?CustomerID=" + (string)DataBinder.Eval(e.Item.DataItem, "CustomerID");
		}			
    }
</script>
<html>
<head>
<title>ThaiCreate.Com ASP.NET - MySql</title>
</head>
<body>
	<form id="form1" runat="server">
    <asp:Repeater id="myRepeater" runat="server"
	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>Edit</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:Hyperlink id="hplEdit" runat="server"></asp:Hyperlink></td>
		</tr>			
	</ItemTemplate>
	</asp:Repeater>
	</form>
</body>
</html> 
 
 
 
AspNetMySQLEditForm.aspx 
 
<%@ Page Language="C#" Debug="true" %>
<%@ import Namespace="System.Data" %>
<%@ import Namespace="MySql.Data.MySqlClient" %>
<script runat="server">
	MySqlConnection objConn = new MySqlConnection();
	MySqlCommand objCmd = new MySqlCommand();
	MySqlDataReader dtReader;
	String strConnString,strSQL;
    void Page_Load(object sender,EventArgs e)
	{
		strConnString = "Server=localhost;User Id=root; Password=root; Database=mydatabase; Pooling=false";
		objConn = new MySqlConnection(strConnString);
		objConn.Open();
		if(!Page.IsPostBack)
		{
			ViewData();
		}
    }
	void ViewData()
	{
		//*** DataTable ***//
		MySqlDataAdapter dtAdapter;
		DataTable dt = new DataTable();
		strSQL = "SELECT * FROM customer WHERE CustomerID = '"+ Request.QueryString["CustomerID"] +"' ";
		dtAdapter = new MySqlDataAdapter(strSQL, objConn);
		dtAdapter.Fill(dt);
		if(dt.Rows.Count > 0)
		{
			this.txtCustomerID.Text = (string)dt.Rows[0]["CustomerID"];
			this.txtName.Text = (string)dt.Rows[0]["Name"];
			this.txtEmail.Text = (string)dt.Rows[0]["Email"];
			this.txtCountryCode.Text = (string)dt.Rows[0]["CountryCode"];
			this.txtBudget.Text = (string)dt.Rows[0]["Budget"].ToString();
			this.txtUsed.Text = (string)dt.Rows[0]["Used"].ToString();
		}
	}
    
    void btnSave_Click(Object sender, EventArgs e)        			
	{
		strSQL = "UPDATE customer SET " + 
		" CustomerID = '"+ this.txtCustomerID.Text +"' " + 
		" ,Name = '"+ this.txtName.Text +"' " + 
		" ,Email = '"+ this.txtEmail.Text +"' " + 
		" ,CountryCode = '"+ this.txtCountryCode.Text +"' " + 
		" ,Budget = '"+ this.txtBudget.Text +"' " + 
		" ,Used = '"+ this.txtUsed.Text +"' " + 
		" WHERE CustomerID = '" + Request.QueryString["CustomerID"] + "' ";
		objCmd = new MySqlCommand();
		objCmd.Connection = objConn;
		objCmd.CommandText = strSQL;
		objCmd .CommandType = CommandType.Text;
		
						
		this.pnlAdd.Visible = false;
		try
		{
			objCmd.ExecuteNonQuery();
			this.lblStatus.Text = "Record Updated";
			this.lblStatus.Visible = true;
		}
		catch (Exception ex)
		{
			this.lblStatus.Text = "Record can not update";
		}
    }
	void Page_UnLoad()
	{
		objConn.Close();
		objConn = null;
	}
</script>
<html>
<head>
    <title>ThaiCreate.Com ASP.NET - MySql</title>
</head>
<body>
    <form id="form1" runat="server">
        <asp:Panel id="pnlAdd" runat="server">
            <table width="353" border="1">
                <tbody>
                    <tr>
                        <td width="102">
                             <asp:Label id="lblCustomerID" runat="server" text="CustomerID"></asp:Label></td>
                        <td width="235">
                             <asp:TextBox id="txtCustomerID" runat="server" Width="79px"></asp:TextBox>
                        </td>
                    </tr>
                    <tr>
                        <td>
                             <asp:Label id="lblName" runat="server" text="Name"></asp:Label></td>
                        <td>
                             <asp:TextBox id="txtName" runat="server" Width="177px"></asp:TextBox>
                        </td>
                    </tr>
                    <tr>
                        <td>
                             <asp:Label id="lblEmail" runat="server" text="Email"></asp:Label></td>
                        <td>
                             <asp:TextBox id="txtEmail" runat="server" Width="155px"></asp:TextBox>
                        </td>
                    </tr>
                    <tr>
                        <td>
                             <asp:Label id="lblCountryCode" runat="server" text="CountryCode"></asp:Label></td>
                        <td>
                             <asp:TextBox id="txtCountryCode" runat="server" Width="38px"></asp:TextBox>
                        </td>
                    </tr>
                    <tr>
                        <td>
                             <asp:Label id="lblBudget" runat="server" text="Budget"></asp:Label></td>
                        <td>
                             <asp:TextBox id="txtBudget" runat="server" Width="76px"></asp:TextBox>
                        </td>
                    </tr>
                    <tr>
                        <td>
                             <asp:Label id="lblUsed" runat="server" text="Used"></asp:Label></td>
                        <td>
                             <asp:TextBox id="txtUsed" runat="server" Width="76px"></asp:TextBox>
                        </td>
                    </tr>
                </tbody>
            </table>
            <br />
            <asp:Button id="btnSave" onclick="btnSave_Click" runat="server" Text="Save"></asp:Button>
            <br />
        </asp:Panel>
        <asp:Label id="lblStatus" runat="server" visible="False"></asp:Label>
    </form>
</body>
</html> 
 
 
 
Screenshot  
 
        
 
      
 
 
 
ASP.NET MySql.Data.MySqlClient - Parameter Query  
              
  
              			
			  
								  
			  
  
                          
  | 
           
          
            
			  ช่วยกันสนับสนุนรักษาเว็บไซต์ความรู้แห่งนี้ไว้ด้วยการสนับสนุน Source Code 2.0 ของทีมงานไทยครีเอท 
              | 
           
          
 
       
		 
					
        
          
            
                
                   | 
                 
                
                  |   | 
                  By :  | 
                  ThaiCreate.Com Team (บทความเป็นลิขสิทธิ์ของเว็บไทยครีเอทห้ามนำเผยแพร่ ณ เว็บไซต์อื่น ๆ)  | 
                 
                
                  |   | 
                  Score Rating :  | 
                  
				     				   | 
                    | 
                 
                
                  |   | 
                  Create/Update Date :  | 
                  
                    2008-10-26 22:58:44            /
            2017-03-29 10:10:17 | 
                 
				
				
				                
                  |   | 
                  Download :  | 
                   
												
								 
										
									   | 
                 
				              | 
           
         
		
      
         
           
            
            
              
                | 
               
                   Sponsored Links / Related |  
              | 
         
        
                        | 
          
		  
		   | 
         
         
          |             
		  
	
      
     | 
     
 
 
		  
         | 
		
          
		   
		  
              
      
     |