Ask a Question related to ASP.NET General, Design and Development.
-
Daniel Bass #1
retrieving text from a selected data grid row cell...
this was working
Dim szMsgNumber = db_grid.SelectedItem.Cells(0).Text
until i changed the first column (at index 0) to a ASP:ButtonColumn from a
boundcolumn...
now it just returns blank text every time...
how do i retrieve text from a buttoncolumn cell??
Daniel Bass Guest
-
Flash forms, grid and accessing currently selected data
Hi, I use cfform format flash to display and edit participant information to a sport competition. I have a top panel displaying a grid with the... -
Data Grid Dynamic Cell Colors
I would like to create a Data Grid where the individual cell colors change based on the number in the cell. For example, numbers between 0 and 1... -
Data Grid cell press question...
Ok, I've been working days on this and finally have broke down to ask. I'm importing via coldfusion, information from a database. Like the parks... -
--- retrieving text from a selected datagrid cell ---
this was working Dim szMsgNumber = db_grid.SelectedItem.Cells(0).Text until i changed the first column (at index 0) to a ASP:ButtonColumn... -
Item Cell Text in grid
Thanks get the -
Daniel Bass #2
Re: retrieving text from a selected data grid row cell...
Dim linkbtnMsgNumber As LinkButton =
db_grid.SelectedItem.Cells(0).Controls(0)
Dim szMsgNumber = linkbtnMsgNumber.Text
"Daniel Bass" <danielbass@postmaster.co.uk> wrote in message
news:O6xq1GURDHA.940@TK2MSFTNGP11.phx.gbl...> this was working
>
> Dim szMsgNumber = db_grid.SelectedItem.Cells(0).Text
>
>
>
> until i changed the first column (at index 0) to a ASP:ButtonColumn from a
> boundcolumn...
>
>
>
> now it just returns blank text every time...
>
>
>
> how do i retrieve text from a buttoncolumn cell??
>
>
Daniel Bass Guest



Reply With Quote

