1

1 つのドロップダウン リストと Gridview を含む Web ページを作成しています。

クエリはドロップダウン リストで、SQL Server データベース テーブル リストが含まれます。ドロップダウン リストからテーブル名を選択すると、Gridview はテーブル データ全体を表示し、編集、更新、削除、キャンセル アクションを実行できる必要があります。

Edit Gridview をクリックすると、更新ボタンとキャンセル ボタンを表示する必要があり、更新するとドロップダウン リスト テーブルが更新され、削除される必要があります。

私のコードは次のようになります。

HTML ページ:

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="DataGridView_Sample._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>Untitled Page</title>
    <style type="text/css">
        .style1
        {
            font-weight: bold;
            text-decoration: underline;
            font-size: x-large;
            text-align: center;
        }
    </style>
</head>
<body>
    <form id="form1" runat="server">
    <div>

        <h5 class="style1">
            Data Grid View Sample</h5>

    </div>
    <asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="true" 
    onselectedindexchanged="DropDownList1_SelectedIndexChanged">
         <asp:ListItem Text="-- Select --" Value=""></asp:ListItem>
        <asp:ListItem Text="Emp" Value="Emp"></asp:ListItem>
        <asp:ListItem Text="Dept" Value="Dept"></asp:ListItem>
    </asp:DropDownList>

    <br />
    <br />
    <b>Grid View:</b>
    <br />
    <br />

    <asp:GridView ID="GridView1" runat="server" Height="181px" 
        onrowediting="GridView1_RowEditing" onrowupdating="GridView1_RowUpdating" 
        Width="518px">
        <Columns>
            <asp:CommandField ButtonType="Button" ShowEditButton="True" />
        </Columns>
        <EmptyDataTemplate>
            &nbsp;
        </EmptyDataTemplate>
    </asp:GridView>
    </form>

</body>
</html>

.aspx ページ コード:

namespace DataGridView_Sample
{
    public partial class _Default : System.Web.UI.Page
    {
        SqlConnection con = new SqlConnection("Data Source=SHINY-PC\\SQLEXPRESS;Initial Catalog=NRK;Integrated Security=True");
        SqlCommand cmd = new SqlCommand();
        SqlDataAdapter da = new SqlDataAdapter();
        DataTable dt = new DataTable();
        DataSet ds = new DataSet();

        protected void Page_Load(object sender, EventArgs e)
        {
            if (!Page.IsPostBack)
            {
                con.Open();
                cmd = new SqlCommand("Select name from sys.tables order by name", con);
                da = new SqlDataAdapter(cmd);
                da.Fill(ds);
                DropDownList1.DataSource = ds;
                DropDownList1.DataTextField = "name";
                DropDownList1.DataValueField = "name";
                DropDownList1.DataBind();
                DropDownList1.Items.Insert(0, new ListItem("--Select--", "--Select--"));
            }
        }

        protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
        {
            if (DropDownList1.SelectedIndex != 0)
            {
                cmd = new SqlCommand("select * from " + DropDownList1.SelectedItem.Value, con);
                con.Open();
                da = new SqlDataAdapter(cmd);
                da.Fill(dt);
                GridView1.DataSource = dt;
                GridView1.DataBind();
                con.Close();
            }
        }

        protected void GridView1_RowEditing(object sender, GridViewEditEventArgs e)
        {
            cmd = new SqlCommand("select * from " + DropDownList1.SelectedItem.Value, con);
            con.Open();
            da = new SqlDataAdapter(cmd);
            da.Fill(dt);
            GridView1.EditIndex = Convert.ToInt16(e.NewEditIndex);
            GridView1.DataSource = dt;
            GridView1.DataBind();
            con.Close();
        }

        protected void GridView1_RowUpdating(object sender, GridViewUpdateEventArgs e)
        {
        }

        protected void GridView1_RowCancelingEdit(object sender, GridViewCancelEditEventArgs e)
        {
        }
    }
}

誰でも助けてください。

前もって感謝します。

4

1 に答える 1

0

上記を踏まえて、tablename と columnname の 2 つのフィールドを持つデータベース テーブルを作成します。tablename = emp の 4 つの行があり、各行には columnname = emp テーブルの列の 1 つがあります。同様に、tablename = dept の 6 つの行があり、各行には columnname = dept テーブルの列の 1 つがあります。次に、GridView1_RowUpdating イベントで、DropDownList で選択されたテーブルに基づいてデータベースから列の名前を取得し、そのテーブルに配置されているストアド プロシージャを使用して適宜更新できます。GridView1_RowCancelingEdit では、次のことを行うだけです。

GridView1.EditIndex = -1;

データを再バインドします (そのためのメソッドが必要になります)。

于 2013-03-06T15:27:58.013 に答える