主頁 > 知識庫 > 合并兩個DataSet的數(shù)據(jù)內(nèi)容的方法

合并兩個DataSet的數(shù)據(jù)內(nèi)容的方法

熱門標簽:杭州智能電話機器人 山東防封電銷卡辦理套餐 怎樣在地圖標注消火栓圖形 濟源人工智能電話機器人價格 地圖標注位置多的錢 內(nèi)蒙古智能電銷機器人哪家強 泰州手機外呼系統(tǒng)軟件 百度地圖標注點擊事件 廈門四川外呼系統(tǒng)

Default.aspx

復制代碼 代碼如下:

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

!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>無標題頁/title>
/head>
body>
    form id="form1" runat="server">
    div>
        asp:GridView ID="GridView1" runat="server" CellPadding="4" ForeColor="#333333"
            GridLines="None">
            RowStyle BackColor="#EFF3FB" />
            FooterStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
            PagerStyle BackColor="#2461BF" ForeColor="White" HorizontalAlign="Center" />
            SelectedRowStyle BackColor="#D1DDF1" Font-Bold="True" ForeColor="#333333" />
            HeaderStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
            EditRowStyle BackColor="#2461BF" />
            AlternatingRowStyle BackColor="White" />
        /asp:GridView>
    /div>
    /form>
/body>
/html>

Default.aspx.cs

復制代碼 代碼如下:

using System;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
using System.Data.SqlClient;

public partial class _Default : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        DataSet dsSource = new DataSet();        //創(chuàng)建源數(shù)據(jù)集
        DataSet dsTarget = new DataSet();        //創(chuàng)建目標數(shù)據(jù)集
        string conStr = ConfigurationManager.ConnectionStrings["conStr"].ToString();
        using (SqlConnection con = new SqlConnection(conStr))//創(chuàng)建數(shù)據(jù)連接
        {
            //創(chuàng)建數(shù)據(jù)適配器
            SqlDataAdapter sda = new SqlDataAdapter("select * from DictionaryType", con);
            sda.Fill(dsSource, "DictionaryType");//將字典類添加到源數(shù)據(jù)集

            sda = new SqlDataAdapter("select * from DictionaryItem", con);
            sda.Fill(dsTarget, "DictionaryItem");//將字典值添加到目標數(shù)據(jù)集
        }
        dsTarget.Merge(dsSource);   //將源數(shù)據(jù)集的DictionaryType表合并到目標數(shù)據(jù)集中
        GridView1.DataSource = dsTarget.Tables["DictionaryType"];
        GridView1.DataBind();
    }
}

您可能感興趣的文章:
  • C# XML操作 代碼大全(讀XML,寫XML,更新,刪除節(jié)點,與dataset結(jié)合等)
  • Jquery Ajax學習實例6 向WebService發(fā)出請求,返回DataSet(XML) 異步調(diào)用
  • js DataSet數(shù)據(jù)源處理代碼
  • ASP.NET用DataSet導出到Excel的方法
  • ADO.Net 類型化DataSet的簡單介紹
  • ASP.NET中DataTable與DataSet之間的轉(zhuǎn)換示例
  • C#中的DataSet、string、DataTable、對象轉(zhuǎn)換成Json的實現(xiàn)代碼
  • ASP.NET中實現(xiàn)把Json數(shù)據(jù)轉(zhuǎn)換為ADO.NET DataSet對象
  • 關(guān)于javascript中dataset的問題小結(jié)

標簽:朝陽 周口 臺州 朔州 喀什 新鄉(xiāng) 百色 洛陽

巨人網(wǎng)絡(luò)通訊聲明:本文標題《合并兩個DataSet的數(shù)據(jù)內(nèi)容的方法》,本文關(guān)鍵詞  合并,兩個,DataSet,的,數(shù)據(jù),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《合并兩個DataSet的數(shù)據(jù)內(nèi)容的方法》相關(guān)的同類信息!
  • 本頁收集關(guān)于合并兩個DataSet的數(shù)據(jù)內(nèi)容的方法的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章