Dumb question about formatting in VB.Net

  • Thread starter Thread starter Coleen
  • Start date Start date
C

Coleen

Hi All :-)

I have an HTML table that I am using to store session variables from other
pages within our web-application. In this table, I need to format the rows
& cells to be right aligned. I am using this code:

tbl_tax_subtotals.Rows(1).Cells(2).HorizontalAlign = HorizontalAlign.Right
tbl_tax_subtotals.Rows(2).Cells(2).HorizontalAlign = HorizontalAlign.Right
tbl_tax_subtotals.Rows(3).Cells(2).HorizontalAlign = HorizontalAlign.Right

I have this working perfectly in the other HTML table on the same page, but
for some really odd reason, this table will NOT align the cells Right for
me. Any suggestions?

TIA, Coleen
 
Coleen,

You should probably post this in microsoft.public.dotnet.framework.apsnet to
get a good answer.

-Sam Matzen
 
Back
Top