2

Our web application is deployed over 2 WFE servers controlled by an NLB

Both servers have the same DLLS installed in the GAC also same web files, when opening the website at server A it works fine but in case of server B no styles and JS files are loaded.

Could it be an issue caused by IIS?

5
  • Does Firebug or IE's developer tools give you any clues? Commented Oct 20, 2011 at 13:48
  • Did you check the HTML rendered? are the references to css and js files accurate on server B? Commented Oct 20, 2011 at 13:48
  • yes same HTML is rendered on both servers Commented Oct 20, 2011 at 14:04
  • How do you check if you are hitting server A vs. server B when you are checking your website? Just want to clarify since you said servers are in NLB Commented Oct 20, 2011 at 14:27
  • I am accessing the application from within the server "localhost" while doing the test Commented Oct 21, 2011 at 7:24

3 Answers 3

2

Well the issue seemed to be with the web site created under IIS, I have removed and created it . it works fine now .

thanks

Sign up to request clarification or add additional context in comments.

Comments

1

Check permissions given to the APP POOl user

Comments

0

When you upload the files to server, it may not reference to the correct path. So it will be probobly work if you change the links of your .css and .js files.

eg. <script src="Scripts/scripts.js" type="text/javascript"></script>
to <script src="http://www.yoursite.com/Scripts/scripts.js" type="text/javascript"></script>

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.