I'm using basic HTML with framesets. Everything works fine in IE, but when I click on a link that has a frameset in Firefox, it shows a broken link. What's happening is that one of the slashes in the web addresses is switching from '/' to '\'.
http://www.kjwebsite.com/Humor\HumorIndex.htm. Is there something special I need to do to allow this to work in Firefox?
Here's the frameset code (very basic):
<html>
<frameset cols="20%,80%" >
<frame name="Toolbar" src="HumorListFrame.htm">
<frame name="Content" scrolling="YES" noresize src="HumorDisplayFrame.htm">
</frameset>
</html>