eramgarden Posted June 26, 2004 Posted June 26, 2004 I have a panel/table that when I click "submit" button..it first expands, then I click "submit" again, it shrinks to it's original size. This only happens in Mozilla -- This is the HTML <asp:panel id="pnlAddSite8" runat="server" > <TABLE class="tblAddSite"> ... </table> </asp:panel> -- I display the panel in the code: pnlAddSite8.Visible = True strDivStyle = "POSITION: absolute; LEFT: 30px; TOP: 198px; Height=368px; " pnlAddSite8.Attributes.Add("style", strDivStyle) -- table CSS has the same style as the panel. -- I did move the panel's style to HTML but that messes up the positions. Any ideas how to fix this in Mozilla? and why this is happening? Quote
wessamzeidan Posted June 26, 2004 Posted June 26, 2004 Try to set the 'display' style property of your panel to "block", not sure if it will solve the problem Quote Proudly a Palestinian Microsoft ASP.NET MVP My Blog: wessamzeidan.net
Moderators Robby Posted June 26, 2004 Moderators Posted June 26, 2004 It may be that both the panel and table are in the exact same position. Quote Visit...Bassic Software
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.