![]() | |
![]() |
| | Thread Tools | Search this Thread | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
Hi, I'm using the asp:gridview control for displaying the data from SQL Server. Now, I've found that if the column is invisible "<asp:BoundField DataField="some_id" HeaderText="some_id" SortExpression="some_id" Visible="false"/>", I cannot get the value from that column (just get the null string by "GridView1.Rows[1].Cells[0].Text". Thanks. Regards, |
#3
| |||
| |||
|
|
Web controls with Visible=false don't get sent to client. Hide them rather with css style display:none. -- Eliyahu Goldin, Software Developer & Consultant Microsoft MVP [ASP.NET] "ghostwolf" <ylkam (AT) roctec (DOT) com.hk> wrote in message news:ugaj$QhtGHA.2260 (AT) TK2MSFTNGP02 (DOT) phx.gbl... Hi, I'm using the asp:gridview control for displaying the data from SQL Server. Now, I've found that if the column is invisible "<asp:BoundField DataField="some_id" HeaderText="some_id" SortExpression="some_id" Visible="false"/>", I cannot get the value from that column (just get the null string by "GridView1.Rows[1].Cells[0].Text". Thanks. Regards, |
#4
| |||
| |||
|
|
Thanks, how can I add this property to the particular column? "Eliyahu Goldin" <removemeegoldin (AT) monarchmed (DOT) com> wrote in message news:ePOxAEitGHA.4336 (AT) TK2MSFTNGP06 (DOT) phx.gbl... Web controls with Visible=false don't get sent to client. Hide them rather with css style display:none. -- Eliyahu Goldin, Software Developer & Consultant Microsoft MVP [ASP.NET] "ghostwolf" <ylkam (AT) roctec (DOT) com.hk> wrote in message news:ugaj$QhtGHA.2260 (AT) TK2MSFTNGP02 (DOT) phx.gbl... Hi, I'm using the asp:gridview control for displaying the data from SQL Server. Now, I've found that if the column is invisible "<asp:BoundField DataField="some_id" HeaderText="some_id" SortExpression="some_id" Visible="false"/>", I cannot get the value from that column (just get the null string by "GridView1.Rows[1].Cells[0].Text". Thanks. Regards, |
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
| |