views:

12

answers:

0

Hi,

some time ago I had an entry point for application in index.aspx with following content:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<HTML lang="en">
    <HEAD>
        <TITLE>xxx</TITLE>
        <META http-equiv="Content-Type" content="text/html; charset=utf-8">

    </HEAD>
    <frameset rows="68,*" border="0" frameborder="no" framespacing="0">
        <frame name="header" src="/appversion3.5/skins/client_en-GB/Header.htm" scrolling="no" noresize>
        <frame name="footer" src="/appversion3.5/StandardPages/Login.aspx?w=IHS&amp;loc=en-GB">
    </frameset>
</HTML>

Recently, I've made some changes too whole application which resulted in changing the src of frames from appversion3.5 to appversion4 in frame src attribute.

For some time I got random emails from clients that they have problems with application, they see errors etc. I suggested clearing cache / using different browsers as I couldn't find the problem. Now, accidentally I managed to reproduce it on one INTRANET PC. On that PC , lady had url to that index.aspx file in IE favourites. When using that url from favourites, no index.aspx is downloaded and frames are downloaded from appversion3.5 path in IIS !! But when typing the same address manually, index.aspx file is downloaded and appversion4 pages are used.

Any idea what's going on? Or how can I force browser to download index.aspx file?

Thanks, Pawel