1

グリッドビューで SQL レコードを更新しようとしていますが、値が更新されていません。

aspx コードは次のとおりです。

<asp:GridView ID="GridView1" runat="server" GridLines="None" AutoGenerateColumns="false" 
    onrowcancelingedit="GridView1_RowCancelling" 
    OnRowDeleting ="GridView1_RowDeleting" 
    onrowediting="GridView1_RowEditing"
    onrowupdating="GridView1_RowUpdating" 
    DataKeyNames="RID"
    CssClass="mGrid" 
    PagerStyle-CssClass="pgr"  
    AlternatingRowStyle-CssClass="alt">  


      <Columns>           

         <asp:TemplateField Visible="false" HeaderText="RID">
            <ItemTemplate>
              <asp:Label runat="server" ID="RID" Text='<%#Bind("RID")%>' />
            </ItemTemplate>
         </asp:TemplateField>

         <asp:TemplateField HeaderText="Short Description">
            <ItemTemplate>
              <asp:Label runat="server" ID="short_lbl" Text='<%#Bind("SHORT_DESCRIPTION") %>' />
            </ItemTemplate>
            <EditItemTemplate>
            <asp:TextBox runat="server" ID="SHORT_DESCRIPTION" Text='<%#Bind("SHORT_DESCRIPTION") %>' />
            <asp:RequiredFieldValidator runat="server" ID="valShort" ControlToValidate="SHORT_DESCRIPTION" ValidationGroup="var1" ErrorMessage="*" />
            </EditItemTemplate>
         </asp:TemplateField>


              <asp:TemplateField HeaderText="Description">
            <ItemTemplate>
              <asp:Label runat="server" ID="desc_label" Text='<%#Bind("DESCRIPTION") %>' />
            </ItemTemplate>
            <EditItemTemplate>
            <asp:TextBox runat="server" ID="DESCRIPTION" Text='<%#Bind("DESCRIPTION") %>' />
            <asp:RequiredFieldValidator runat="server" ID="valLast" ControlToValidate="DESCRIPTION" ValidationGroup="var1" ErrorMessage="*" />
            </EditItemTemplate>
         </asp:TemplateField>



      <asp:TemplateField HeaderText="Action">
      <ItemTemplate>
      <asp:LinkButton ID="btnEdit" Text="Edit" runat="server" CommandName="Edit" />
      <br />
      <asp:LinkButton ID="btnDelete" Text="Delete" runat="server" CommandName="Delete" />
      </ItemTemplate>
      <EditItemTemplate>
      <asp:LinkButton ID="btnUpdate" Text="Update" runat="server" CommandName="Update" />
      <asp:LinkButton ID="btnCancel" Text="Cancel" runat="server" CommandName="Cancel" />
      </EditItemTemplate>
      </asp:TemplateField>

   </Columns>

</asp:GridView>

そして更新機能そのもの。

protected void GridView1_RowUpdating(object sender, GridViewUpdateEventArgs e)
{
   string s = GridView1.DataKeys[e.RowIndex].Value.ToString();           
   Label RID = GridView1.Rows[e.RowIndex].FindControl("RID") as Label;
   TextBox SHORT_DESCRIPTION = GridView1.Rows[e.RowIndex].FindControl("SHORT_DESCRIPTION") as TextBox;
   TextBox DESCRIPTION = GridView1.Rows[e.RowIndex].FindControl("DESCRIPTION") as TextBox;

   String UpdateQuery = string.Format("UPDATE TAXONOMIES SET SHORT_DESCRIPTION='{0}', DESCRIPTION='{1}' WHERE RID = {2}", SHORT_DESCRIPTION.Text, DESCRIPTION.Text, Convert.ToInt32(RID.Text));   

    GridView1.EditIndex = -1;
    BindGridData(UpdateQuery);

}

ブレークポイントを置いて値を見ると、新しく入力された値ではないことがわかります。何が起こっているのかわかりません。

4

3 に答える 3

5

問題は、あなたがイベントに拘束gridされていることだと思います。 ifにバインドしてみてくださいpage-load
(!IsPostBack)

private void Page_Load()
{
    if (!IsPostBack)
    {
        //bind your grid here.
    }
}
于 2013-02-27T04:41:23.713 に答える
1

このコードを使用する

<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" 
        DataKeyNames="id" DataSourceID="SqlDataSource1">
        <Columns>
            <asp:CommandField ShowEditButton="True" />
            <asp:BoundField DataField="id" HeaderText="id" ReadOnly="True" 
                SortExpression="id" />
            <asp:BoundField DataField="regGroupID" HeaderText="regGroupID" 
                SortExpression="regGroupID" />
            <asp:BoundField DataField="amountReceived" HeaderText="amountReceived" 
                SortExpression="amountReceived" />
            <asp:BoundField DataField="other" HeaderText="other" SortExpression="other" />
        </Columns>
    </asp:GridView>

<asp:SqlDataSource ID="SqlDataSource1" runat="server" 
    ConnectionString="<%$ ConnectionStrings:ConnectionString %>" 
    SelectCommand="SELECT * FROM [Table]" 
    UpdateCommand="UPDATE [Table] SET [regGroupID] = @regGroupID, [amountReceived] = @amountReceived, [other] = @other WHERE [id] = @id">
    <DeleteParameters>
        <asp:Parameter Name="id" Type="Int32" />
    </DeleteParameters>

    <UpdateParameters>
        <asp:Parameter Name="regGroupID" Type="Int32" />
        <asp:Parameter Name="amountReceived" Type="Decimal" />
        <asp:Parameter Name="other" Type="String" />
        <asp:Parameter Name="id" Type="Int32" />
    </UpdateParameters>
</asp:SqlDataSource>

ここでは、idを主キーとして設定します

テーブル構造は

ここに画像の説明を入力してください

于 2013-02-27T04:39:12.483 に答える
0

Eval を Bind に変更してみてください。Eval は読み取り専用であるため、実際に値を更新することはできません。

于 2013-02-27T04:25:49.117 に答える