Home All Groups Group Topic Archive Search About
Author
17 Aug 2006 9:22 AM
Ben
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

Author
17 Aug 2006 9:31 AM
Patrick.O.Ige
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
>
Author
17 Aug 2006 12:27 PM
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
>>
>
>
Author
18 Aug 2006 7:57 AM
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
>>
>
>
Author
19 Aug 2006 3:57 AM
luigi.corrias
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
Author
19 Aug 2006 8:16 AM
Ben
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
>