1

私は現在、リピーターにバインドされているデータソースとしてデータリーダーを持っています。ここに見られるように:

Try
            myConnection.Open()
            sqlCommand = New SqlCommand(sqlText, myConnection)
            dr = sqlCommand.ExecuteReader(CommandBehavior.CloseConnection)
            cropPlanRepeater.DataSource = dr
            cropPlanRepeater.DataBind()
 Catch ex As Exception

 End Try

これにより、次のようにデータバインドイベントが起動します。

Public Sub CropPlanRepeater_ItemDataBound(ByVal source As Object, ByVal e As System.Web.UI.WebControls.RepeaterItemEventArgs) Handles cropPlanRepeater.ItemDataBound

    Dim rptI As RepeaterItem = e.Item
    Dim AmttoSell = TryCast(rptI.FindControl("amtToSell"), Label)
    AmttoSell.Text = AmttoSell
End Sub

何らかの理由で、このfindcontrolメソッドは、「null」または「nothing」を返し続けます。コントロールの階層などに欠陥があるかどうかを確認しようとしましたが、何も見つかりません。

これがどのように機能するかを見るためのHTMLです:

<asp:Repeater ID="cropPlanRepeater" runat="server" Visible="false">
            <HeaderTemplate>
                <tr align="center" class="top-rpt-head">
                    <th scope="col">
                        Crop
                    </th>
                    <th scope="col">
                        Production
                    </th>
                    <th scope="col">
                        Amount to Sell
                    </th>
                    <th scope="col">
                        Breakeven
                    </th>
                    <th scope="col">
                        Target Price
                    </th>
                    <th scope="col">
                        Target Revenue
                    </th>
                    <th scope="col">
                        Feed Value
                    </th>
                    <th scope="col">
                        Other Income
                    </th>
                    <th scope="col">
                        Expenses
                    </th>
                    <th scope="col">
                        Profit
                    </th>
                </tr>
            </HeaderTemplate>
            <ItemTemplate>
                <tr align="center">
                    <td>
                    <!--- this needs to be fixed- incorrect methodology(should be done in the codebehind)----->
                        <%# (DataBinder.Eval(Container.DataItem, "Crop_Name"))%>
                    </td>
                    <td>
                    <!--- this needs to be fixed- incorrect methodology(should be done in the codebehind)----->
                        <%# (DataBinder.Eval(Container.DataItem, "Acres_D") * DataBinder.Eval(Container.DataItem, "Yield_D") + DataBinder.Eval(Container.DataItem, "Acres_I") * DataBinder.Eval(Container.DataItem, "Yield_I"))%>
                    </td>
                    <td>

                    </td>
                 </tr>
                    <asp:label runat="server" ID="AmtToSell"></asp:Label>

                    <asp:Literal runat="server" ID="Yield_I" Text='<%#Eval("Yield_I") %>' Visible="false" />
                    <asp:Literal runat="server" ID="Yield_D" Text='<%#Eval("Yield_D") %>' Visible="false" />
                    <asp:Literal runat="server" ID="Acres_I" Text='<%#Eval("Acres_I") %>' Visible="false" />
                    <asp:Literal runat="server" ID="Acres_D" Text='<%#Eval("Acres_D") %>' Visible="false" />
                    <asp:Literal runat="server" ID="Storage" Text='<%#Eval("Storage") %>' Visible="false" />
                    <asp:Literal runat="server" ID="Fed" Text='<%#Eval("Fed") %>' Visible="false" />
                    <asp:Literal runat="server" ID="Bartered" Text='<%#Eval("Bartered") %>' Visible="false" />
                    <asp:Literal runat="server" ID="Profit_I" Text='<%#Eval("ProfAcre_I") %>' Visible="false" />
                    <asp:literal runat="server" ID="Profit_D" Text='<%#Eval("ProfAcre_D") %>' Visible="false" />         
            </ItemTemplate>
        </asp:Repeater>

私はテーブルの内側と外側にラベルを貼ってみましたが、役に立ちませんでした。HTMLまたはコードビハインドに問題があるかどうかわかりません。コードビハインドで計算を使用して、そのラベル「amttosell」を操作する必要があります。(amttosell.text =データベースから取得したデータから計算したり、上記の非表示のラベルに投稿したりします。

どんな助けでも大歓迎です。

4

1 に答える 1

0

CropPlanRepeater_ItemDataBound メソッドは、ヘッダー、フッター、およびアイテムを処理します。あなたが持っているコードについてはif、項目タイプが Item または AlternateItem であることを確認するブロックでラップする必要があります。

Public Sub CropPlanRepeater_ItemDataBound(ByVal source As Object, ByVal e As System.Web.UI.WebControls.RepeaterItemEventArgs) Handles cropPlanRepeater.ItemDataBound

Dim rptI As RepeaterItem = e.Item

if rptI.ItemType = ListItemType.Item OR rptI.ItemType = ListItemType.AlternatingItem then
    Dim AmttoSell = TryCast(rptI.FindControl("amtToSell"), Label)
    AmttoSell.Text = AmttoSell

end if
End Sub

http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.repeater.itemdatabound.aspx#Y200を参照してください。

于 2012-10-16T17:50:49.910 に答える