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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top