Any suggestions on how to prevent wrapping a control that is in a div if viewed by IE but renders the outside container as a table in Netscape, Opera and Mozilla? I don't want the content returned back to the browser to be in a table. Tables are BAD!!!!!! Really screws-up borders and other things if your trying to get cross browser compatibility.
public class MyControl : WebControl, INamingContainer
{
public MyControl() : base(HtmlTextWriterTag.Div)
{...}
}
Doing this cause the container to be a div in IE but not the other browsers. Instead it renders a table for all other browsers I checked.
Answering a question increases your knowledge asking a question shows your Intelligence!