Click here to Skip to main content
15,905,420 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
HI i just want to Set Editable Gridview and i used Object datasource for Define Select and update parameters. Selection is ok. But when it comes to update method ,if select my UPDATE METHOD but when it comes to next step , it always displays SELECT method parameters as Signature. then i changed the Object datasourse parameters by Code behind. but Still It displays this Error "Could not find control 'Lbl_sq' in ControlParameter 'sq'."

Code :

XML
<asp:ObjectDataSource ID="ObjectDataSource1" runat="server"
  OldValuesParameterFormatString="original_{0}"
SelectMethod="getrateGridInfo_TEST"
UpdateMethod="getrateGridInfo_TESTEDIT"  TypeName="BAL.rate_Viever" >
<SelectParameters>
<asp:ControlParameter ControlID="DropDownLis_rateCode" Name="rateCode"
PropertyName="SelectedValue" Type="String" />
</SelectParameters>
<UpdateParameters>
<asp:ControlParameter ControlID="Lbl_sq" Name="sq"
PropertyName="Text" Type="String" />
<asp:ControlParameter ControlID="txtRate" Name="rate"
PropertyName="Text" Type="String" />

</UpdateParameters>
</asp:ObjectDataSource>





public DataTable getrateGridInfo_TEST(String rateCode)
      {
          string sql = "SELECT [minWeight],[maxWeight],[rate],[sq] FROM tblRateDetails WHERE rateCode='" + rateCode + "' order by minWeight";
          DataTable dt = SQLTrans.executeQuery(sql, "tbl");

          return dt;

      }

      public Void getrateGridInfo_TESTEDIT(String sq,String rate)
      {
       string sql = "UPDATE  tblRateDetails SET  rate = '" + rate + "' WHERE    sq = '"+sq+"' ";
          DataTable dt = SQLTrans.executeQuery(sql, "tbl");

          //return dt;

      }



So if anyone could help me on this matter that would be a great help for me.Thanks in Advance!!!
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900