On Row Command="gv New_Row Command" On Row Data Bound="gv New_Row Data Bound" On Row Editing="gv New_Row Editing" On Row Updated="gv New_Row Updated" On Row Updating="gv New_Row Updating" Allow Paging="true" Page Size="30" Data Key Names="ecm_id" On Page Index Changing="gv New_Page Index Changing" Show Footer="false" On Row Deleting="gv New_Row Deleting" Coding : static int i; Page load you can declare the static variable .This variable is used for ascending and descending purpose .


In my VB Gridview, I had bind several column from datatable into one single column of the gridview. The following is the VB code: Protected Sub Grid View1_Row Editing(By Val sender As Object, By Val e As Grid View Edit Event Args) 'Set the edit index. Bind Data() End Sub Protected Sub Grid View1_Row Canceling Edit(By Val sender As Object, By Val e As Grid View Cancel Edit Event Args) 'Reset the edit index. Edit Index = -1 'Bind data to the Grid View control.
But I have no idea how to get those value when doing Row Editing & Row Updating. Bind Data() End Sub Protected Sub Grid View1_Row Updating(By Val sender As Object, By Val e As Grid View Update Event Args) 'Retrieve the table from the session object.
Add(New Data Column("Col1_APH", Get Type(String))) dt.
Add(New Data Column("Col1_TOIL", Get Type(String))) dt.
Data Bind() 'Persist the table in the Session object. Close() End Using End Sub (look at the ASPX markup code to see what's the name of your input element name - give it one if it doesn't have) then use the code above to read your element in your grid view event handler.
Seems I can't find a way to get row index (or id) for the row just updated in gridview1_Row Updated() (in Row Updating, I can use: for example: txt Activity ID = CType(gridview1.
I have a Gridview on an ASP page bound to an SQL table.
I've configured the Grid to allow Multiple updates by replacing the default Label Controls with Template Fields using the approach described here: Bulk Updates to Rows Bound to a Grid View Everything was working fine, until I made a change to bind the Gridview query programmatically on page load (With the aim of making the Gridview display different data depending on the user currently viewing the page) as described here: Bind Gridview programmatically. Page Protected Sub Page_Load(By Val sender As Object, By Val e As System. Load If Not Is Post Back Then gvbind() End If End Sub Public Sub gvbind() Dim Sql Data Source1 As New Sql Data Source() Sql Data Source1.
New Edit Index 'Bind data to the Grid View control. Bind Data() End Sub Private Sub Create Data Table() Dim cmd As New System.