|
code
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
how to do this?Hi,
I need the values of the fields of the record that has been selected for updating in a gridview. In the "Protected Sub GridView1_RowEditing(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewEditEventArgs) Handles GridView1.RowEditing", i couldn't find those values .. Is this possible, and if yes, how? Thanks for help Ben What you posted will not give u what i want
Please post more snippet code Patrick Show quoteHide quote "Ben" <s***@sdscs.no> wrote in message news:uO8rw6dwGHA.1272@TK2MSFTNGP05.phx.gbl... > Hi, > > I need the values of the fields of the record that has been selected for > updating in a gridview. > In the > "Protected Sub GridView1_RowEditing(ByVal sender As Object, ByVal e As > System.Web.UI.WebControls.GridViewEditEventArgs) Handles > GridView1.RowEditing", > > i couldn't find those values .. > > Is this possible, and if yes, how? > Thanks for help > Ben > Ok, here part of the code:
1) aspx file: <asp:SqlDataSource ID="SqlDataSource1" runat="server" ConflictDetection="CompareAllValues" ConnectionString="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\my.mdb" SelectCommand="SELECT * FROM [lokaal]" UpdateCommand="UPDATE [table] SET [field1] = ?, [field2 = WHERE [field1 = ?"> <UpdateParameters> <asp:Parameter Name="field1 Type="String" /> <asp:Parameter Name="field2" Type="String" /> <asp:Parameter Name="original_field1" Type="string" /> <asp:Parameter Name="original_field2" Type="String" /> </UpdateParameters> </asp:SqlDataSource> <asp:GridView ID="GridView1" runat="server" DataKeyNames="field1" DataSourceID="SqlDataSource1" /> <Columns> <asp:CommandField ShowEditButton="True" > <asp:BoundField DataField="field1" /> <asp:BoundField DataField="field2" /> </Columns> </asp:GridView> 2) code-behind: Protected Sub GridView1_RowEditing(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewEditEventArgs) Handles GridView1.RowEditing ' I want here the code for fetching the original values of the two fields ('field1', 'field2') of that record (before updating) End Sub Show quoteHide quote "Patrick.O.Ige" <naijaco***@hotmail.com> schreef in bericht news:e0$dj$dwGHA.1216@TK2MSFTNGP03.phx.gbl... > What you posted will not give u what i want > Please post more snippet code > Patrick > "Ben" <s***@sdscs.no> wrote in message > news:uO8rw6dwGHA.1272@TK2MSFTNGP05.phx.gbl... >> Hi, >> >> I need the values of the fields of the record that has been selected for >> updating in a gridview. >> In the >> "Protected Sub GridView1_RowEditing(ByVal sender As Object, ByVal e As >> System.Web.UI.WebControls.GridViewEditEventArgs) Handles >> GridView1.RowEditing", >> >> i couldn't find those values .. >> >> Is this possible, and if yes, how? >> Thanks for help >> Ben >> > > Hallo, Patrick ...
Can you help me now? Thanks Show quoteHide quote "Patrick.O.Ige" <naijaco***@hotmail.com> schreef in bericht news:e0$dj$dwGHA.1216@TK2MSFTNGP03.phx.gbl... > What you posted will not give u what i want > Please post more snippet code > Patrick > "Ben" <s***@sdscs.no> wrote in message > news:uO8rw6dwGHA.1272@TK2MSFTNGP05.phx.gbl... >> Hi, >> >> I need the values of the fields of the record that has been selected for >> updating in a gridview. >> In the >> "Protected Sub GridView1_RowEditing(ByVal sender As Object, ByVal e As >> System.Web.UI.WebControls.GridViewEditEventArgs) Handles >> GridView1.RowEditing", >> >> i couldn't find those values .. >> >> Is this possible, and if yes, how? >> Thanks for help >> Ben >> > > Dear Ben
If i understand your problem i think u can find and handle the value u need using the sample code explained here http://msdn2.microsoft.com/en-us/library/system.web.ui.webcontrols.gridview.rowediting.aspx Luigi Thanks
<luigi.corr***@gmail.com> schreef in bericht Show quoteHide quote news:1155959840.853454.57750@75g2000cwc.googlegroups.com... > Dear Ben > > If i understand your problem i think u can find and handle the value u > need using the sample code explained here > > http://msdn2.microsoft.com/en-us/library/system.web.ui.webcontrols.gridview.rowediting.aspx > > Luigi >
controls & Session
Asp.net charting control GridView Localization of the ASP.NET login control Drop Down Box Validation Problem Calendar control - disabling past dates. What happen to powerupasp.net? Table can't be a container for other controls? Regarding creating a new solution passing query string as variable from aspx.cs to aspx |
|||||||||||||||||||||||