How to know there is something in the cell or not ?

Posted by Harikrishna on Stack Overflow See other posts from Stack Overflow or by Harikrishna
Published on 2010-04-23T06:13:27Z Indexed on 2010/04/23 6:43 UTC
Read the original article Hit count: 230

Filed under:
|
|

I have table like below in the html file:

   <table border="1">
    <tr>
        <td>BuyQuantity</td><td>SellQuantity</td>
    </tr>
    <tr>
        <td>15D</td><td>&nbsp;<span style="font-family: &quot;Arial Unicode MS&quot;;"><o:p></o:p></span></p></td>
    </tr>
    <tr>
    <td>&nbsp;<span style="font-family: &quot;Arial Unicode MS&quot;;"><o:p></o:p></span></td><td>38D</td>
    </tr>
    <tr>
    <td>&nbsp;<span style="font-family: &quot;Arial Unicode MS&quot;;"><o:p></o:p></span></td><td>99D</td>
    </tr>
    <tr>
    <td>38D</td><td>&nbsp;<span style="font-family: &quot;Arial Unicode MS&quot;;"><o:p></o:p></span></td>
    </tr>

    </table>

There are two columns: buy-quantity and sell-quantity.(It is only example but in each html file there is different content in the table.) Now with the content of these two columns I want to decide there is items bought or items sold.Like in the first row there is 15d buy-qauntity then items were bought and in the second row there is 38d sell-qauntity then items were sold and so on. And after deciding there is items-bought or items-sold I want to build one column named buy/sell for this table like below:

![alt text][1]

[1]: http://C:\Documents and Settings\Administrator\My Documents\My Pictures\untitled.png

How can I do this ?

© Stack Overflow or respective owner

Related posts about c#

Related posts about winforms