F
Fraggle
If I put the following in my code
<aspanel runat="server" visible="true" id="foo" >
</aspanel>
I get this as html back; this is using the lovely Mozilla
<table id="_ctl1_foo" cellpadding="0" cellspacing="0" border="0"
width="100%"><tbody><tr><td>
</td></tr></tbody></table>
Using IE i get the less horrid
<div id="_ctl1_foo">
</div>
But really I don't want any actual html from a panel, I just want it
to show and hide the contents! I can do the layout myself.
I have full power over the server, so if I must mess around in there
then I will!
Cheers
Fragg
<aspanel runat="server" visible="true" id="foo" >
</aspanel>
I get this as html back; this is using the lovely Mozilla
<table id="_ctl1_foo" cellpadding="0" cellspacing="0" border="0"
width="100%"><tbody><tr><td>
</td></tr></tbody></table>
Using IE i get the less horrid
<div id="_ctl1_foo">
</div>
But really I don't want any actual html from a panel, I just want it
to show and hide the contents! I can do the layout myself.
I have full power over the server, so if I must mess around in there
then I will!
Cheers
Fragg