473,406 Members | 2,710 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,406 software developers and data experts.

Changes to .asp file not updated to web

If the developers make changes to .htm files the saved
changes are updated to the web instantly, but if they
change a .asp file the change does not show on the site,
why is this?

please help

thank you

Jul 19 '05 #1
5 1758
That is not what is really happening. Computers do what they are told to
do, so I'd say that the user is not telling a computer the right thing,
whether it's the computer that's supposed to save the file, upload it, load
the page (not from cache), etc.

Ray at work

"kyle" <an*******@discussions.microsoft.com> wrote in message
news:03****************************@phx.gbl...
If the developers make changes to .htm files the saved
changes are updated to the web instantly, but if they
change a .asp file the change does not show on the site,
why is this?

please help

thank you

Jul 19 '05 #2
let me start this over

I can watch one of the developers open a .asp file in
FrontPage, make a change, save it back to the location it
was opened from x:\IntPub\<pagename>.com\www\<filename>.asp
But when I go to the webserver and open the IIS mmc, and
look at the <filename>.asp file uner <pagename>.com it is
not updated, and if browsed from the internet the site
still shows the old content on that page

But if on the webserver I go to
x:\IntPub\<pagename>.com\www using windows explorer I see
that the file is stamped with a date and time that match
the change, I can open the file from this location in IE
and see the change, and open the file in a text editor and
see the change made in the code

This is not the case with .htm files in the same
x:\IntPub\<pagename>.com\www any changes made to these
files post to the internet

-----Original Message-----
That is not what is really happening. Computers do what they are told todo, so I'd say that the user is not telling a computer the right thing,whether it's the computer that's supposed to save the file, upload it, loadthe page (not from cache), etc.

Ray at work

"kyle" <an*******@discussions.microsoft.com> wrote in messagenews:03****************************@phx.gbl...
If the developers make changes to .htm files the saved
changes are updated to the web instantly, but if they
change a .asp file the change does not show on the site,
why is this?

please help

thank you

.

Jul 19 '05 #3
"kyle" <an*******@discussions.microsoft.com> wrote in message
news:04****************************@phx.gbl...
let me start this over

I can watch one of the developers open a .asp file in
FrontPage, make a change, save it back to the location it
was opened from x:\IntPub\<pagename>.com\www\<filename>.asp
But when I go to the webserver and open the IIS mmc, and
look at the <filename>.asp file uner <pagename>.com it is
not updated, and if browsed from the internet the site
still shows the old content on that page

But if on the webserver I go to
x:\IntPub\<pagename>.com\www using windows explorer I see
that the file is stamped with a date and time that match
the change, I can open the file from this location in IE
and see the change, and open the file in a text editor and
see the change made in the code

This is not the case with .htm files in the same
x:\IntPub\<pagename>.com\www any changes made to these
files post to the internet


It could be a caching issue. I think that if you append some querystring
variables, you might be able to get around the caching. For example:
http://host/filename.asp?somefakevar=1

See if that does anything for you. If so, then it's probably just a matter
of the page being cached (in the browser or at some proxy between your
browser and the webserver). If not, then I'm not sure what to tell you...
it might still be a caching issue (I'm not sure if this method will actually
get around caching issues, but I thought I read once long ago that it
could).

Hope this helps.
Peter Foti
Jul 19 '05 #4
Kyle,
There are 2 places caching is occurring that can cause this problem:
First place is on the client's computer. To fix it go in IE to "Tools-->
Internet Options --> General Tab" and click the "Settings" button under the
"Temporary Internet Files" section. Under "Check for newer versions of
stored pages", select "Every visit to the page"

The second place is in IIS on the server. To fix this:
Open Administrative Tools --> IIS and navigate and select the web
application. --> Right-click --> properties. Click the "configuration"
button on the "Directory" tab. On the window that appears select the "Cache
Options" tab. Select the "do not cache ASP files" option.
Mike

"Peter Foti" <pe****@systolicnetworks.com> wrote in message
news:vq************@corp.supernews.com...
"kyle" <an*******@discussions.microsoft.com> wrote in message
news:04****************************@phx.gbl...
let me start this over

I can watch one of the developers open a .asp file in
FrontPage, make a change, save it back to the location it
was opened from x:\IntPub\<pagename>.com\www\<filename>.asp
But when I go to the webserver and open the IIS mmc, and
look at the <filename>.asp file uner <pagename>.com it is
not updated, and if browsed from the internet the site
still shows the old content on that page

But if on the webserver I go to
x:\IntPub\<pagename>.com\www using windows explorer I see
that the file is stamped with a date and time that match
the change, I can open the file from this location in IE
and see the change, and open the file in a text editor and
see the change made in the code

This is not the case with .htm files in the same
x:\IntPub\<pagename>.com\www any changes made to these
files post to the internet
It could be a caching issue. I think that if you append some querystring
variables, you might be able to get around the caching. For example:
http://host/filename.asp?somefakevar=1

See if that does anything for you. If so, then it's probably just a

matter of the page being cached (in the browser or at some proxy between your
browser and the webserver). If not, then I'm not sure what to tell you...
it might still be a caching issue (I'm not sure if this method will actually get around caching issues, but I thought I read once long ago that it
could).

Hope this helps.
Peter Foti

Jul 19 '05 #5
Will I have to re-start IIS if I make the change you
described in the second option?

thank you

-----Original Message-----
Kyle,
There are 2 places caching is occurring that can cause this problem:First place is on the client's computer. To fix it go in IE to "Tools-->Internet Options --> General Tab" and click the "Settings" button under the"Temporary Internet Files" section. Under "Check for newer versions ofstored pages", select "Every visit to the page"

The second place is in IIS on the server. To fix this:
Open Administrative Tools --> IIS and navigate and select the webapplication. --> Right-click --> properties. Click the "configuration"button on the "Directory" tab. On the window that appears select the "CacheOptions" tab. Select the "do not cache ASP files" option.
Mike

"Peter Foti" <pe****@systolicnetworks.com> wrote in messagenews:vq************@corp.supernews.com...
"kyle" <an*******@discussions.microsoft.com> wrote in message news:04****************************@phx.gbl...
> let me start this over
>
> I can watch one of the developers open a .asp file in
> FrontPage, make a change, save it back to the location it > was opened from x:\IntPub\<pagename>.com\www\<filename>.asp > But when I go to the webserver and open the IIS mmc, and > look at the <filename>.asp file uner <pagename>.com it is > not updated, and if browsed from the internet the site
> still shows the old content on that page
>
> But if on the webserver I go to
> x:\IntPub\<pagename>.com\www using windows explorer I see > that the file is stamped with a date and time that match > the change, I can open the file from this location in IE > and see the change, and open the file in a text editor and > see the change made in the code
>
> This is not the case with .htm files in the same
> x:\IntPub\<pagename>.com\www any changes made to these
> files post to the internet
It could be a caching issue. I think that if you append some querystring variables, you might be able to get around the caching. For example: http://host/filename.asp?somefakevar=1

See if that does anything for you. If so, then it's probably just amatter
of the page being cached (in the browser or at some
proxy between your browser and the webserver). If not, then I'm not sure what to tell you... it might still be a caching issue (I'm not sure if this method willactually
get around caching issues, but I thought I read once

long ago that it could).

Hope this helps.
Peter Foti

.

Jul 19 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

7
by: bobdirls | last post by:
Hi, Is there any way of telling if a database or table has been updated, altered or deleted from since the last backup was made in SQL server. Windows does not correctly report .mdf file size...
4
by: Glenn Owens | last post by:
I have a DataGrid web control which I've dynamically populated with template columns to be used for bulk-editting. Generally, all of the columns are textbox and/or dropdownlist child controls. ...
3
by: Waldy | last post by:
Hi there, a customer has an .ASP .Net application that I have written for them. They recently requested a minor change to a SQL statement that loads a drop down. I made the change and supplied...
5
by: keith.culpepper | last post by:
Can anyone please provide some assistance with a trigger that I need to develop. Here is the situation: Our program updates depend on database updates. If a client receives the program update...
30
by: Charles Law | last post by:
Here's one that should probably have the sub-heading "I'm sure I asked this once before, but ...". Two users are both looking at the same data, from a database. One user changes the data and...
3
by: meeraguna | last post by:
We have 20 -30 normalized tables in our dartabase . Also we have 4 tables where we store the calculated data fron those normalised tables. The Reason we have these 4 denormalised tables is when we...
0
by: Juan T. Llibre | last post by:
Here's the updated list of file changes which trigger Aplication restarts : 1. Adding, modifying, or deleting any source code file in any application folder ( *.cs, *.vb, etc. ) 2. Adding,...
7
by: Andrew Jocelyn | last post by:
Hi I'm running an ASP.NET web application under IIS. I'm inserting a cache object with a file based CacheDependency. I've noticed that when the file changes the Cache object is not always...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.