I'm using a control in my asp.net web page that I don't have the source code, this control renders some undesirable BR(new line) tags in HTML which they are breaknig my layout. I would like to know if there is a way I can take control of render process without breaking control behaviour (it is a very complex ajax powered one) or do something client side.
I tried to use CSS to solve that, but without sucess... indeed, it works in firefox but doesnt in IE6:
#my-div-place-holder br { position: absolute;/*hack: Supress BR tags*/ }