
Signature
Howard Swope [hswope.swopeATnavteqDOTcom]
Senior Software Developer
Media Development
Navteq Traffic [http://www.traffic.com]
> I have an ASP.Net 2.0 web site that I am testing against firefox (Everything
> works right in IE).. My site has a navigation framework setup with master
[quoted text clipped - 7 lines]
>
> Does anyone have any ideas how to keep this from occurring?
What kind of buttons are you using?
To run Javascript on the page without posting anything back to the
server, you should use an input tag with type="button", not type="submit".

Signature
Göran Andersson
_____
http://www.guffa.com
Howard Swope - 25 Jul 2007 20:25 GMT
My Buttons look like this in the code:
<div id="buttonBar" class="buttonBar">
<button id="toggleTreeButton" runat="server"
onclick="ToggleTree()" title="Toggle tree pane">
<img src="/images/toggle.gif" alt="Toggle tree pane" />
</button>
<button id="moveSplitterLeftButton" runat="server"
onclick="MoveSplitter('left')" title="Move splitter left">
<img alt="Move splitter left" src="/images/moveleft.gif"
/>
</button>
<button id="moveSplitterRightButton" runat="server"
onclick="MoveSplitter('right')" title="Move splitter right">
<img alt="Move splitter right" src="/images/moveright.gif"
/>
</button>
<button id="printableButton" onclick="ShowPrintable()"
title="Show printable version">
<img alt="Show printable version"
src="/images/printable.gif" />
</button>
</div>
>> I have an ASP.Net 2.0 web site that I am testing against firefox
>> (Everything works right in IE).. My site has a navigation framework setup
[quoted text clipped - 13 lines]
> To run Javascript on the page without posting anything back to the server,
> you should use an input tag with type="button", not type="submit".
Howard Swope - 25 Jul 2007 20:34 GMT
You were absolutely right. I changed the type to type="button" and
everything worked well.
Thanks!
>> I have an ASP.Net 2.0 web site that I am testing against firefox
>> (Everything works right in IE).. My site has a navigation framework setup
[quoted text clipped - 13 lines]
> To run Javascript on the page without posting anything back to the server,
> you should use an input tag with type="button", not type="submit".