2

これはよくある質問のようですが、どういうわけか、私が見つけた答えのどれも私のケースを解決していないようです.何が欠けているのでしょうか.

紙の雑誌とその購読価格を表示する ObjectDataSource にバインドされた GridView があります。ユーザーが雑誌の購読を希望する場合は、グリッドの各行にテキスト ボックスとボタンを追加して、ユーザーが日付を入力し、ボタンをクリックして購読できるようにします。このテキスト ボックスのフィールドは GridView に存在しません。

理想的には、UpdateParameters にパラメーターを追加して、テキスト ボックスの値を Update メソッドに送信したいと考えています。しかし、私はそうすることに失敗しました。

FindControl の使用で見つけたいくつかの提案も機能しません。(Firefox で Inspect Element を使用すると、生成されたコントロール ID に Ctrl0、Ctrl1、Ctrl2 プレフィックスが付いていることがわかります。

サンプルの ASPX ページとコード ビハインドが添付されています。ここで私が見逃していることについての洞察に深く感謝します。

よろしくお願いします。

ASPX ファイルとコード ビハインドは次のとおりです。

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="TestGridView.aspx.cs" Inherits="WebApplication1.TestGridView" %>

<!DOCTYPE html>

<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" AutoGenerateColumns="false" runat="server" DatasourceID="ObjectDataSource2" DataKeyNames ="MagazineID" OnRowUpdating="GridView1_RowUpdating">
        <Columns>
            <asp:BoundField DataField="MagazineID" HeaderText ="Magazine ID" ReadOnly="true" SortExpression="PricingID">
                <ControlStyle Width="100%" />
            </asp:BoundField>
            <asp:BoundField DataField="MagazineName" HeaderText ="Magazine Name" ReadOnly="true" />
            <asp:BoundField DataField="MagazinePrice" HeaderText ="Magazine price" ReadOnly="true" />
            <asp:TemplateField HeaderText ="SubscriptionStartDate">
                <ItemTemplate>
                    <asp:TextBox ID ="txtSubscriptionStartDateStr" runat="server" Width ="100px"/>
                </ItemTemplate>
            </asp:TemplateField>
            <asp:ButtonField ButtonType="Button" CommandName="Update" Text="Subscribe" />
        </Columns>
    </asp:GridView>

    <asp:ObjectDataSource ID="ObjectDataSource2" runat="server" UpdateMethod ="AddNewSubscription" SelectMethod="GetAllMagazines" TypeName="WebApplication1.TestGridView">
        <UpdateParameters>
            <asp:ControlParameter ControlID="txtSubscriptionStartDateStr" DefaultValue="" Name="userName" PropertyName="Text" Type="string" />
        </UpdateParameters>
    </asp:ObjectDataSource>

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

コード ビハインド:

using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

namespace WebApplication1
{
    public partial class TestGridView : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {

        }

        public DataTable GetAllMagazines()
        {
            DataTable dt = new DataTable();

            object[] parms1 = new object[] {11, "Magazine1", 5.99};
            object[] parms2 = new object[] {12, "Magazine2", 3.99 };

            dt.Columns.Add("MagazineID");
            dt.Columns.Add("MagazineName");
            dt.Columns.Add("MagazinePrice");

            dt.Rows.Add(parms1);
            dt.Rows.Add(parms2);

            return dt;
        }

        protected void GridView1_RowUpdating(object sender, GridViewUpdateEventArgs e)
        {
            GridView gv = (GridView)sender;
            GridViewRow gvRow = gv.Rows[e.RowIndex];
            TextBox tb = (TextBox) gv.FindControl("txtSubscriptionStartDateStr");
            if (tb == null)
                throw new ApplicationException("Could not find TextBox");

            string subscriptionStartDateStr = tb.Text;
            // more code to parse and use the subscription date
        }

        public void AddNewSubscription(int magazineID, string subscriptionStartDateStr)
        {
            // insert database row here.

        }
    }
}
4

1 に答える 1

3

間違ったオブジェクトで FindControl を呼び出しています。

GridView1_RowUpdating メソッドの変更で:

TextBox tb = (TextBox) gv.FindControl("txtSubscriptionStartDateStr");

TextBox tb = (TextBox) gvRow.FindControl("txtSubscriptionStartDateStr");

だからあなたの機能はこれです:

protected void GridView1_RowUpdating(object sender, GridViewUpdateEventArgs e)
{
  GridView gv = (GridView)sender;
  GridViewRow gvRow = gv.Rows[e.RowIndex];
  TextBox tb = (TextBox) gvRow.FindControl("txtSubscriptionStartDateStr");
  if (tb == null)
     throw new ApplicationException("Could not find TextBox");

  string subscriptionStartDateStr = tb.Text;
  // more code to parse and use the subscription date
}
于 2012-11-08T13:32:41.487 に答える