|
|
|
start date: Mon, 6 Aug 2007 16:01:52 -0400,
posted on: microsoft.public.dotnet.framework.aspnet
back
| Thread Index |
|
1
Bill Gower
|
|
2
Mark Rae [MVP]
|
|
3
Bill Gower
|
|
4
Mark Rae [MVP]
|
|
5
Bill Gower
|
|
6
Mark Rae [MVP]
|
Problem with empty cell value in GridView
I have an cell which contains a field member which is filled with
String.Empty. When I retrieve the value in the cell with
Cells[0].Text.ToString() and try to compare it to String.Empty, I can't
because it contains " ". I really don't want to compare the value to
that so how can I retrieve an empty cell so that it is String.Empty.
Bill
Date:Mon, 6 Aug 2007 16:01:52 -0400
Author:
|
Re: Problem with empty cell value in GridView
"Bill Gower" wrote in message
news:O14dgSG2HHA.5884@TK2MSFTNGP02.phx.gbl...
> I have an cell which contains a field member which is filled with
> String.Empty. When I retrieve the value in the cell with
> Cells[0].Text.ToString() and try to compare it to String.Empty, I can't
> because it contains " ".
Yes - that's how empty GridView cells are rendered in HTML. A GridView is
nothing more than an HTML table by the time ASP.NET has rendered it to the
client browser - the rows are <tr> elements and the individual cells are
<td> elements. Some browsers have problems displaying <td> elements which
are completely empty, specifically with regard to borders etc, so ASP.NET
inserts to prevent this.
> I really don't want to compare the value to that
??? Why on earth not?
if (Cells[0].Text.ToString() == " ")
{
// do something
}
What could be simpler...?
--
Mark Rae
ASP.NET MVP
http://www.markrae.net
Date:Mon, 6 Aug 2007 21:20:02 +0100
Author:
|
Re: Problem with empty cell value in GridView
Ok that's fine. I won't make it more difficult then it is. :) But now I do
have a real problem. I am retrieving the 3rd row which happens to have no
value in the cell and it is actually containing the value from the first row
same cell. When the gridview is displayed it is an empty cell but when I
retrieve it by
GridView.Rows[index].Cells[0].Text.ToString().
It has the value of the cell from the first row.
What is happening here?
Bill
"Mark Rae [MVP]" wrote in message
news:%23rUmncG2HHA.3916@TK2MSFTNGP02.phx.gbl...
> "Bill Gower" wrote in message
> news:O14dgSG2HHA.5884@TK2MSFTNGP02.phx.gbl...
>
>> I have an cell which contains a field member which is filled with
>> String.Empty. When I retrieve the value in the cell with
>> Cells[0].Text.ToString() and try to compare it to String.Empty, I can't
>> because it contains " ".
>
> Yes - that's how empty GridView cells are rendered in HTML. A GridView is
> nothing more than an HTML table by the time ASP.NET has rendered it to the
> client browser - the rows are <tr> elements and the individual cells are
> <td> elements. Some browsers have problems displaying <td> elements which
> are completely empty, specifically with regard to borders etc, so ASP.NET
> inserts to prevent this.
>
>> I really don't want to compare the value to that
>
> ??? Why on earth not?
>
> if (Cells[0].Text.ToString() == " ")
> {
> // do something
> }
>
> What could be simpler...?
>
>
> --
> Mark Rae
> ASP.NET MVP
> http://www.markrae.net
Date:Mon, 6 Aug 2007 17:19:53 -0400
Author:
|
Re: Problem with empty cell value in GridView
"Bill Gower" wrote in message
news:u0ChG%23G2HHA.1212@TK2MSFTNGP05.phx.gbl...
> Ok that's fine. I won't make it more difficult then it is. :) But now I
> do have a real problem. I am retrieving the 3rd row which happens to have
> no value in the cell and it is actually containing the value from the
> first row same cell. When the gridview is displayed it is an empty cell
> but when I retrieve it by
>
> GridView.Rows[index].Cells[0].Text.ToString().
>
> It has the value of the cell from the first row.
>
> What is happening here?
Difficult to tell without seeing your code but, if you do a View Source on
the page in question, you will see the HTML table rendered from the GridView
webcontrol - does that shed any light on it...?
--
Mark Rae
ASP.NET MVP
http://www.markrae.net
Date:Mon, 6 Aug 2007 22:33:28 +0100
Author:
|
Re: Problem with empty cell value in GridView
I checked the source and rows 1 to 3 have an entry in the cell and rows 4
to 5 have   in the cell. When I step through the code and check the
value at the cell from row 4, it has the value from the cell in row 1.
Bill
"Mark Rae [MVP]" wrote in message
news:OUmqpFH2HHA.5772@TK2MSFTNGP02.phx.gbl...
> "Bill Gower" wrote in message
> news:u0ChG%23G2HHA.1212@TK2MSFTNGP05.phx.gbl...
>
>> Ok that's fine. I won't make it more difficult then it is. :) But now I
>> do have a real problem. I am retrieving the 3rd row which happens to
>> have no value in the cell and it is actually containing the value from
>> the first row same cell. When the gridview is displayed it is an empty
>> cell but when I retrieve it by
>>
>> GridView.Rows[index].Cells[0].Text.ToString().
>>
>> It has the value of the cell from the first row.
>>
>> What is happening here?
>
> Difficult to tell without seeing your code but, if you do a View Source on
> the page in question, you will see the HTML table rendered from the
> GridView webcontrol - does that shed any light on it...?
>
>
> --
> Mark Rae
> ASP.NET MVP
> http://www.markrae.net
Date:Mon, 6 Aug 2007 19:15:46 -0400
Author:
|
Re: Problem with empty cell value in GridView
"Bill Gower" wrote in message
news:%23liK7%23H2HHA.748@TK2MSFTNGP04.phx.gbl...
>I checked the source and rows 1 to 3 have an entry in the cell and rows 4
>to 5 have   in the cell. When I step through the code and check the
>value at the cell from row 4, it has the value from the cell in row 1.
Please show the code you're using...
--
Mark Rae
ASP.NET MVP
http://www.markrae.net
Date:Tue, 7 Aug 2007 07:59:14 +0100
Author:
|
|
|