I've recently inherited a website which has two versions, one which runs on IIS and one which runs in the Visual Studio development environment, and there are a few differences in the way the website runs on the two of them which I'm confused about.The relevant code files for the IIS server version are kept under wwwroot, and I can open the website in Visual Studio and it works fine.However, there is a local development environment version of the website, which contains a copy of the same folders, and additionally a solution file. However, there are a number of problems with this version of the website, despite the fact the code is the same. Firstly, none of the images specified in the html tags are displayed correctly, even though I have checked that the images are in the project's directory in the location specified by the image's src attribute, just like they are in the IIS server version.The other problem is that none of the links work. I've noticed that for both the IIS server version of the website and the fileserver version, when the website first loads it calls Application_BeginRequest() in Global.asax.However, when the links are subsequently clicked, it only calls Application_BeginRequest() in the IIS server version -the fileserver version does not call this and just gives a 404 page not found error.I'm new to web development, so I'm not sur
View Complete Post