Link to home
Start Free TrialLog in
Avatar of james henderson
james hendersonFlag for United States of America

asked on

IIS7 and javascript files

I have a website running on IIS6.  The index page holds frameset for content and a couple other pages.  The index page also has a large javascript file included at the top of the page with a common objects that are accessed like this:  top.appObject.<parameter name>.  This architecture works perfectly.

The problem is that I am moving this site to IIS7.  It doesn't use any .net code at all.  I have configured the site to be (I think) a duplicate of the existing site, but I can't seem to reach the included javascript file ... when trying to call any function in the file I get a 'undefined' error.

any help appreciated.
ASKER CERTIFIED SOLUTION
Avatar of Big Monty
Big Monty
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of james henderson

ASKER

yes, it comes up fine.
I would like to point out that this is a working web site on iis6.  the only change has been moving it to iis7.  it's not a browser issue (IE10) since that also works with the existing site.  I'm really confused here as to the error with pathing, since it is set up the same way.
just to verify that it is indeed a path issue (because to be honest I have no idea what else it could be) can you copy the javascript directly into the page and see if everything works? This'll eliminate any potential compatibility issues.
This is a very large js file, but I did copy it into the page between
<script language='javascript'></script> tags.  The page just renders it as text.

I then copied the file to the same folder as the calling page and still got the "undefined" error.

I checked the mime type and .js = application/x-javascript.

Is there anything else I should check?
does anyone have any ideas?
have you tried testing just a simple javascript include file? something that just would fire off an alert or something?
I will try that this week.