User Profile

Collapse

Profile Sidebar

Collapse
mapfax
mapfax
Last Activity: Oct 27 '06, 03:09 PM
Joined: Oct 18 '06
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • mapfax
    replied to webform datagrid 2 select button columns
    in .NET
    OK I think I've solved this using ItemCommand CommandSource of the datagrid:
    Code:
     Private Sub masterDataGrid_ItemCommand(ByVal source As Object, ByVal e As System.Web.UI.WebControls.DataGridCommandEventArgs) Handles masterDataGrid.ItemCommand
          
            If CType(e.CommandSource, LinkButton).Text.ToString = "Select Hdr" Then
                Session("ColumnIndex") = 0
            ElseIf CType(e.CommandSource,
    ...
    See more | Go to post

    Leave a comment:


  • mapfax
    replied to can i use vb.net module in c#.net
    in .NET
    If using VS, then add your vb.net module to your c# solution as another project and create a reference to it, then just import its namespace into the class that needs to use it. I done something similar, only the other way round using a c# class in a vb.net solution.
    See more | Go to post

    Leave a comment:


  • mapfax
    started a topic webform datagrid 2 select button columns
    in .NET

    webform datagrid 2 select button columns

    I have 2 select button columns in my webform datagrid with each button's property set to the 'select' command name. How can I determine the column index selected for each of the buttons so that I then can run different code in the 'datagrid_selec tedindexchanged ' event procedure?

    vs2002; asp1.1
    See more | Go to post
No activity results to display
Show More
Working...