Html tags vs web server tag controls

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have written a web form and in it I have asp:datagrid, asp:textboxes
I do no have a <table> nor <td> nor <tr>. However, I have used the style
tag withing the asp:textboxe properties to align the controls.
The form looks great in the browser. I have been told that I need the html
controls
<table> , <td> <tr> because in the new version of the visual studio my web
form will not display properly.
What do you suggest?
 
to see the problem with your current approach. do the following. under
desktop properties, apperance, change font size to large, and view your
page. displaying your page a computer with a monitor with a different
resolution can cause the same issue.

-- bruce (sqlwork.com)
 
Some people like tables, some people don't.
While they are a convenient way to structure layouts, they can also cause
accessibility problems such as confusing screen readers about which order
the content should be read. For this reason some web sites try to avoid
tables and align the controls in the ways you have done.
 
Back
Top