Forum Moderators: open
I apologize if this question has already been asked. I cannot search the forums from work (blocked). I am new to Firefox and I really like this browser. However, the following line of code is being written to the screen on some of my pages.
<%@ Language=VBScript%>
Everything displays properly on the first page (root site), but the above line of code is being written to my sub sites. I link to this page (df_nav.asp) from every sub site like this:
<frame src="../df_nav.asp" name="navFrame" scrolling="NO" noresize>
Is this correct?
Thanks for any help,
Tammi
I have done this already. I thought I read somewhere that the code being written to the page can occur when you link to the page a certain way. Do you know anything about this?
For example, from the root (where it works properly), I call that page like this:
df_nav.asp
However, from the virtual websites, I call that page like this:
../df_nav.asp
Any other ideas?
Thanks,
Tammi
<browserCaps>
<case match="Gecko/[-\d]+">
browser=Netscape
frames=true
tables=true
cookies=true
javascript=true
javaapplets=true
ecmascriptversion=1.5
w3cdomversion=1.0
css1=true
css2=true
xml=true
tagwriter=System.Web.UI.HtmlTextWriter
<case match="r1.0[^\.](?'letters'\w*)">
version=6.0
majorversion=6
minorversion=0
<case match="^b" with="${letters}">
beta=true
</case>
</case>
<case match="rv:1(\.\d+)(\.\d)?(?'letters'\w*)">
version=7.0
majorversion=7
minorversion=0
<case match="^b" with="${letters}">
beta=true
</case>
</case>
</case>
</browserCaps>
I know this isn't a direct solution to your server problem but it should provide a workaround or at least give you the starting blocks for creating your own solution using browserCaps. Google 'browserCaps' for more information.
Jimmy
IIS => WEBSITE => Property=>home directory =>configure(button)=>option(button)=>open root path(make it checked )
=========================================
my msn
: syq180@hotmail.com
Thanks for the reply Jimmy, but I cannot seem to locate any .config file on my computer. I am running Windows XP, does this make a difference?
Thanks,
Tammi
Open the text file and fill with:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.web>
<browserCaps>
<case match="Gecko/[-\d]+">
browser=Netscape
frames=true
tables=true
cookies=true
javascript=true
javaapplets=true
ecmascriptversion=1.5
w3cdomversion=1.0
css1=true
css2=true
xml=true
tagwriter=System.Web.UI.HtmlTextWriter
<case match="rv:1.0[^\.](?'letters'\w*)">
version=6.0
majorversion=6
minorversion=0
<case match="^b" with="${letters}">
beta=true
</case>
</case>
<case match="rv:1(\.\d+)(\.\d)?(?'letters'\w*)">
version=7.0
majorversion=7
minorversion=0
<case match="^b" with="${letters}">
beta=true
</case>
</case>
</case>
</browserCaps>
</system.web>
</configuration>
Save and then look at your website again with firefox.