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 > C# (.NET) > ASP.NET Data Control > (C#) ASP.NET SqlDataSource & DataSource



Clound SSD Virtual Server

(C#) ASP.NET SqlDataSource & DataSource

(C#) ASP.NET SqlDataSource & DataSource ตัวอย่างการใช้งาน ASP.NET ในการเรียกใช้ DataSource ของ SqlDataSource

Framework : 2,3,4

Language Code : VB.NET || C#

AspNetSqlDataSource.aspx

<%@ Page Language="VB" %>
<html>
<head>
    <title>ThaiCreate.Com ASP.NET - SqlDataSource</title>
</head>
<body>
	<form id="form1" runat="server">
		<asp:GridView id="myGridView" runat="server" AutoGenerateColumns="False" 
		DataKeyNames="CustomerID" DataSourceid="myDSource" AllowSorting="True">
            <Columns>
                <asp:BoundField DataField="CustomerID" HeaderText="CustomerID" ReadOnly="True" SortExpression="CustomerID" />
                <asp:BoundField DataField="Name" HeaderText="Name" SortExpression="Name" />
                <asp:BoundField DataField="Email" HeaderText="Email" SortExpression="Email" />
                <asp:BoundField DataField="CountryCode" HeaderText="CountryCode" SortExpression="CountryCode" />
                <asp:BoundField DataField="Budget" HeaderText="Budget" SortExpression="Budget" />
                <asp:BoundField DataField="Used" HeaderText="Used" SortExpression="Used" />
            </Columns>
        </asp:GridView>
        <asp:SqlDataSource id="myDSource" runat="server" 
		ConnectionString="Data Source=localhost;Initial Catalog=mydatabase;User id=sa"
		providerName="System.Data.SqlClient"
		SelectCommand="SELECT * FROM [customer]">
		</asp:SqlDataSource>
	</form>
</body>
</html>


หรือจะเป็นตัวอย่างที่เขียนบน Visual Studio 2005,2008 (.NET Framework 2.0,3.5)

AspNetSqlDataSourceVS2005.aspx

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="AspNetSqlDataSourceVS2005.aspx.cs" Inherits="AspNetSqlDataSourceVS2005" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>ThaiCreate.Com ASP.NET - SqlDataSource</title>
</head>
<body>
    <form id="form1" runat="server">
	<asp:GridView id="myGridView" runat="server" AutoGenerateColumns="False" 
		ShowFooter="True" 
		DataKeyNames="CustomerID"
		OnRowEditing="myGridView_RowEditing"
		OnRowCancelingEdit="myGridView_RowCancelingEdit"
		OnRowDeleting="myGridView_RowDeleting"
		OnRowUpdating="myGridView_RowUpdating"
		OnRowCommand="myGridView_RowCommand">

		<Columns>

		<asp:TemplateField HeaderText="CustomerID">
			<ItemTemplate>
				<asp:Label id="lblCustomerID" runat="server" Text='<%# DataBinder.Eval(Container, "DataItem.CustomerID") %>'></asp:Label>
			</ItemTemplate>
			<EditItemTemplate>
				<asp:TextBox id="txtEditCustomerID" size="5" runat="server" Text='<%# DataBinder.Eval(Container, "DataItem.CustomerID") %>'></asp:TextBox>
			</EditItemTemplate>
			<FooterTemplate>
				<asp:TextBox id="txtAddCustomerID" size="5" runat="server"></asp:TextBox>
			</FooterTemplate>
		</asp:TemplateField>

		<asp:TemplateField HeaderText="Name">
			<ItemTemplate>
				<asp:Label id="lblName" runat="server" Text='<%# DataBinder.Eval(Container, "DataItem.Name") %>'></asp:Label>
			</ItemTemplate>
			<EditItemTemplate>
				<asp:TextBox id="txtEditName" size="10" runat="server" Text='<%# DataBinder.Eval(Container, "DataItem.Name") %>'></asp:TextBox>
			</EditItemTemplate>
			<FooterTemplate>
				<asp:TextBox id="txtAddName" size="10" runat="server"></asp:TextBox>
			</FooterTemplate>
		</asp:TemplateField>

		<asp:TemplateField HeaderText="Email">
			<ItemTemplate>
				<asp:Label id="lblEmail" runat="server" Text='<%# DataBinder.Eval(Container, "DataItem.Email") %>'></asp:Label>
			</ItemTemplate>
			<EditItemTemplate>
				<asp:TextBox id="txtEditEmail" size="20" runat="server" Text='<%# DataBinder.Eval(Container, "DataItem.Email") %>'></asp:TextBox>
			</EditItemTemplate>
			<FooterTemplate>
				<asp:TextBox id="txtAddEmail" size="20" runat="server"></asp:TextBox>
			</FooterTemplate>
		</asp:TemplateField>

		<asp:TemplateField HeaderText="CountryCode">
			<ItemTemplate>
				<asp:Label id="lblCountryCode" runat="server" Text='<%# DataBinder.Eval(Container, "DataItem.CountryCode") %>'></asp:Label>
			</ItemTemplate>
			<EditItemTemplate>
				<asp:TextBox id="txtEditCountryCode" size="2" runat="server" Text='<%# DataBinder.Eval(Container, "DataItem.CountryCode") %>'></asp:TextBox>
			</EditItemTemplate>
			<FooterTemplate>
				<asp:TextBox id="txtAddCountryCode" size="2" runat="server"></asp:TextBox>
			</FooterTemplate>
		</asp:TemplateField>

		<asp:TemplateField HeaderText="Budget">
			<ItemTemplate>
				<asp:Label id="lblBudget" runat="server" Text='<%# DataBinder.Eval(Container, "DataItem.Budget") %>'></asp:Label>
			</ItemTemplate>
			<EditItemTemplate>
				<asp:TextBox id="txtEditBudget" size="6" runat="server" Text='<%# DataBinder.Eval(Container, "DataItem.Budget") %>'></asp:TextBox>
			</EditItemTemplate>
			<FooterTemplate>
				<asp:TextBox id="txtAddBudget" size="6" runat="server"></asp:TextBox>
			</FooterTemplate>
		</asp:TemplateField>

		<asp:TemplateField HeaderText="Used">
			<ItemTemplate>
				<asp:Label id="lblUsed" runat="server" Text='<%# DataBinder.Eval(Container, "DataItem.Used") %>'></asp:Label>
			</ItemTemplate>
			<EditItemTemplate>
				<asp:TextBox id="txtEditUsed" size="6" runat="server" Text='<%# DataBinder.Eval(Container, "DataItem.Used") %>'></asp:TextBox>
			</EditItemTemplate>
			<FooterTemplate>
				<asp:TextBox id="txtAddUsed" size="6" runat="server"></asp:TextBox>
				<asp:Button id="btnAdd" runat="server" Text="Add" CommandName="Add"></asp:Button>
			</FooterTemplate>
		</asp:TemplateField>

		<asp:CommandField ShowEditButton="True" CancelText="Cancel" DeleteText="Delete" EditText="Edit" UpdateText="Update" HeaderText="Modify"  />
		<asp:CommandField ShowDeleteButton="True" HeaderText="Delete" />
		
		</Columns>
	</asp:GridView>

    </form>
</body>
</html>


AspNetSqlDataSourceVS2005.aspx.cs

using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

partial class AspNetSqlDataSourceVS2005 : System.Web.UI.Page
{
    SqlDataSource myDSource;
    string strSQL;

    protected void Page_Load(object sender, EventArgs e)
    {
        myDSource = new SqlDataSource();
        myDSource.ConnectionString = System.Configuration.ConfigurationSettings.AppSettings["ConnectionString"];

        if (!Page.IsPostBack)
        {
            BindData();
        }
    }

    private void BindData()
    {
        
        {
            myDSource.SelectCommand = "SELECT * FROM [customer]";
        }
        
        //*** BindData to GridView ***//
        myGridView.DataSource = myDSource;
        myGridView.DataBind();
        
        myDSource = null;
        
    }
    
	protected void  myGridView_RowCancelingEdit(object sender, GridViewCancelEditEventArgs e)
    {
        myGridView.EditIndex = -1;
        myGridView.ShowFooter = true;
        BindData();
    }
    
	protected void myGridView_RowCommand(object sender, GridViewCommandEventArgs e)
    {
        if (e.CommandName == "Add") {
            //*** CustomerID ***'
            TextBox txtCustomerID = (TextBox)myGridView.FooterRow.FindControl("txtAddCustomerID");
            //*** Email ***'
            TextBox txtName = (TextBox)myGridView.FooterRow.FindControl("txtAddName");
            //*** Name ***'
            TextBox txtEmail = (TextBox)myGridView.FooterRow.FindControl("txtAddEmail");
            //*** CountryCode ***'
            TextBox txtCountryCode = (TextBox)myGridView.FooterRow.FindControl("txtAddCountryCode");
            //*** Budget ***'
            TextBox txtBudget = (TextBox)myGridView.FooterRow.FindControl("txtAddBudget");
            //*** Used ***'
            TextBox txtUsed = (TextBox)myGridView.FooterRow.FindControl("txtAddUsed");
            
            strSQL = "INSERT INTO customer (CustomerID,Name,Email,CountryCode,Budget,Used) " + 
			" VALUES ('" + txtCustomerID.Text + "','" + txtName.Text + "','" + txtEmail.Text + "' " + 
			" ,'" + txtCountryCode.Text + "','" + txtBudget.Text + "','" + txtUsed.Text + "') ";
            
            {
                myDSource.InsertCommand = strSQL;
                myDSource.InsertCommandType = SqlDataSourceCommandType.Text;
                myDSource.Insert();
            }
            
            BindData();
        }
    }
    
	protected void  myGridView_RowDeleting(object sender, GridViewDeleteEventArgs e)
    {
	    strSQL = "DELETE FROM customer WHERE CustomerID = '" + myGridView.DataKeys[e.RowIndex].Value + "'";
        
       	myDSource.DeleteCommand = strSQL;
        myDSource.DeleteCommandType = SqlDataSourceCommandType.Text;
        myDSource.Delete();
        
        myGridView.EditIndex = -1;
        BindData();
    }
    
	protected void myGridView_RowEditing(object sender, GridViewEditEventArgs e)
    {
        myGridView.EditIndex = e.NewEditIndex;
        myGridView.ShowFooter = false;
        BindData();
    }
    
	protected void myGridView_RowUpdating(object sender, GridViewUpdateEventArgs e)
    {

        //*** CustomerID ***//
        TextBox txtCustomerID = (TextBox)myGridView.Rows[e.RowIndex].FindControl("txtEditCustomerID");
        //*** Email ***//
        TextBox txtName = (TextBox)myGridView.Rows[e.RowIndex].FindControl("txtEditName");
        //*** Name ***//
        TextBox txtEmail = (TextBox)myGridView.Rows[e.RowIndex].FindControl("txtEditEmail");
        //*** CountryCode ***//
        TextBox txtCountryCode = (TextBox)myGridView.Rows[e.RowIndex].FindControl("txtEditCountryCode");
        //*** Budget ***//
        TextBox txtBudget = (TextBox)myGridView.Rows[e.RowIndex].FindControl("txtEditBudget");
        //*** Used ***//
        TextBox txtUsed = (TextBox)myGridView.Rows[e.RowIndex].FindControl("txtEditUsed");

        strSQL = "UPDATE customer SET CustomerID = '" + txtCustomerID.Text + "' " +
            " ,Name = '" + txtName.Text + "' " +
            " ,Email = '" + txtEmail.Text + "' " +
            " ,CountryCode = '" + txtCountryCode.Text + "' " +
            " ,Budget = '" + txtBudget.Text + "' " +
            " ,Used = '" + txtUsed.Text + "' " +
            " WHERE CustomerID = '" + myGridView.DataKeys[e.RowIndex].Value + "'";

        myDSource.UpdateCommand = strSQL;
        myDSource.UpdateCommandType = SqlDataSourceCommandType.Text;
        myDSource.Update();
        
        myGridView.EditIndex = -1;
        myGridView.ShowFooter = true;
        BindData();
    }
}



Screenshot

ASP.NET SqlDataSource






   
Share

Property & Method (Others Related)

(C#) ASP.NET SqlDataSource - asp:SqlDataSource
(C#) ASP.NET SqlDataSource & Command
(C#) ASP.NET SqlDataSource & DataBind
(C#) ASP.NET SqlDataSource & GridView
(C#) ASP.NET SqlDataSource & Visual Studio 2005,2008,2010

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


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


   


Bookmark.   
       
  By : ThaiCreate.Com Team (บทความเป็นลิขสิทธิ์ของเว็บไทยครีเอทห้ามนำเผยแพร่ ณ เว็บไซต์อื่น ๆ)
  Score Rating :  
  Create/Update Date : 2008-12-06 22:29:04 / 2009-07-25 14:43:22
  Download : Download  (C#) ASP.NET SqlDataSource & DataSource
 Sponsored Links / Related

 
(C#) ASP.NET Data Control
Rating :

 
(C#) ASP.NET SqlDataSource - asp:SqlDataSource
Rating :

 
(C#) ASP.NET AccessDataSource - asp:AccessDataSource
Rating :

 
(C#) ASP.NET ObjectDataSource - asp:ObjectDataSource
Rating :

 
(C#) ASP.NET XmlDataSource - asp:XmlDataSource
Rating :

 
(C#) ASP.NET SiteMapDataSource - asp:SiteMapDataSource
Rating :

 
(C#) ASP.NET ReportViewer - rsweb:ReportViewer
Rating :

 
(C#) ASP.NET DataPager - asp:DataPager
Rating :

 
(C#) ASP.NET LinqDataSource - asp:LinqDataSource
Rating :

 
(C#) ASP.NET Chart - asp:Chart
Rating :

 
(C#) ASP.NET QueryExtender - asp:QueryExtender
Rating :

 
(C#) ASP.NET EntityDataSource - asp:EntityDataSource
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 00
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 อัตราราคา คลิกที่นี่