www.outdoorbits.com

Sister shop to Motorhome Facts KVH Trac Vision R4 SL Satellite Dome System
KVH Trac Vision R4 SL

Fully automatic, compact and easy to use.

Motorhome Insurance

motorhome insurance quote online
Phone on 0208 9845311

Motorhome Insurance Quote

Campsite Reviews

Annagh Head Review Photo

Review of Annagh Head

Eire Campsite Republic Of Ireland

Full Details

Motorhome Garage

2004 Bessacarr E760
2004 Bessacarr E760 motorhome
Owned by Fatalhud
Updated 29/03/2009

2008 Murvi Morello
2008 Murvi Morello motorhome
Owned by chiily
Updated 05/06/2009

2005 Autotrail Chieftain G
2005 Autotrail Chieftain G motorhome
Owned by lindyloot
Updated 28/09/2009

Motorhome Chat Rooms

Motorhome Chat

10 Chat Rooms
0 Members connected
0 members chatting

Chat Now

Motorhome Facts :: View topic - page last modified

Advertise Here
Welcome to Motorhomefacts, we are a thriving motorhome community (Largest in Europe). Why Not JOIN NOW and get instant access to more of the website. It costs nothing to join and only takes a few minutes.
We have 200,000 different people visiting our site monthly and this amount of motorhomers in one place guarantees a fast response to any questions you may have. We also have unique facilities not found elsewhere such as our Online Logbook, stopover tracker, Motorhome directory with Ebay type feedback and the largest repository of motorhome campsites reviews found anywhere



Rally News Next Rally is @ Spring Bank Holiday at Hamble Primary School, Hamble, Southampton on 01/06/2012 in Hampshire

Tweet This Topic Facebook del.icio.us digg blogmarks Furl Reddit technorati Yahoo Google Chatting:  Chat Now View previous topic View next topic

Post new topic Reply to topic Printer-friendly version

 page last modified
657605 Post Posted: Tue Jul 07, 2009 11:56 am Thank this member for this postReply with quote Back To Top

ramos Linked Subscriber 19/11/2012 


Age: 74

Joined: Nov 01, 2008

Posts: 505

MH: autosleeper Clubman Aniversary

Campsites

Gender: None specified

blank.gif

Status: Offline

Ive been almost a week now useing html and javascripts to put a date on my web page for when it was last modified. Ive loaded a few which work to a point but not only does it update the date and time I amend page but anoyingly it updates it every time I view it aswell so it gives the impresion that as soon as I view a page its gives me the exact time I view it as the last time it was amended and thats not correct. Has anyone found a code that works round this problem. All I want is one that only changes when I update anything not just when I view it.
Help Ramos
 
657810 Post Posted: Tue Jul 07, 2009 5:53 pm Thank this member for this postReply with quote Back To Top

locovan Linked Subscriber 19/11/2013 


Age: 70

Joined: Oct 17, 2007

Posts: 12217

MH: Anniversary Clubman

Campsites

Gender: Female

Location: Seasalter Kent

uk.gif

Status: Offline

Have you tried CSI??

______________________________________________________________
Mavis
http://rayandmave.wordpress.com/
http://www.rayandmave.org.uk/
https://sites.google.com/site/mesowarrior2/home
Rays blog as a carer http://mesoandme.wordpress.com/

We're Coming For YOU Our books are to Raise money for the MHF Charity Year so please buy them
http://www.rayandmave.org.uk/html/more_of_our_books.html


À tous mes amis du forum thankyou pour toutes vos pensées agréables et avec son amour derrière moi je lutterai contre mon conflit avec un esprit de postive et le triomphe
 
657965 Post Posted: Tue Jul 07, 2009 8:54 pm Thank this member for this postReply with quote Back To Top

ramos Linked Subscriber 19/11/2012 


Age: 74

Joined: Nov 01, 2008

Posts: 505

MH: autosleeper Clubman Aniversary

Campsites

Gender: None specified

blank.gif

Status: Offline

I have tried so many from free codes but nothing any good yet
 
658169 Post Posted: Wed Jul 08, 2009 7:43 am Thank this member for this postReply with quote Back To Top

lgbzone Subscriber 26/08/2012 


Joined: Oct 08, 2008

Posts: 547

MH: 2002 Hymer B644G

Campsites

Gender: Male

Location: Heysham

blank.gif

Status: Offline

Hi

I haven't used java for this and can't easily see how it would work.

This should be done server side not client side to get results, if the code that is trying to get the modified date and write it to the webpage stream is java script, then it runs on the client machine, the person/machine viewing the page and doesn't have access to the source files (or their modified attribute), only what is serverd by the web server. to do this correctly the webpage should be written in dynamic html, for example ASP, this way the html source is created on the fly at the server and sent to the client, the server can check the last modified attribute of the ASP source file and place it on the html page as it's created for the client. alternatively if the webpage content is stored in a database, then the last modified date would be a field in the db against the content, and would be taken from there, again by the server before the html is sent to the client.
 
658191 Post Posted: Wed Jul 08, 2009 8:24 am Thank this member for this postReply with quote Back To Top

ramos Linked Subscriber 19/11/2012 


Age: 74

Joined: Nov 01, 2008

Posts: 505

MH: autosleeper Clubman Aniversary

Campsites

Gender: None specified

blank.gif

Status: Offline

lgbzone wrote:
Hi

I haven't used java for this and can't easily see how it would work.

This should be done server side not client side to get results, if the code that is trying to get the modified date and write it to the webpage stream is java script, then it runs on the client machine, the person/machine viewing the page and doesn't have access to the source files (or their modified attribute), only what is serverd by the web server. to do this correctly the webpage should be written in dynamic html, for example ASP, this way the html source is created on the fly at the server and sent to the client, the server can check the last modified attribute of the ASP source file and place it on the html page as it's created for the client. alternatively if the webpage content is stored in a database, then the last modified date would be a field in the db against the content, and would be taken from there, again by the server before the html is sent to the client.

Hi Thanks for that ,only thing is I dont fully understand it. Ive never heard of asp. so I surfed and found a site for codes I copied and pasted one into my web page but on viewing all I got was a copy of the code not any dates. I can send you a pm with the code if you like and perhaps you can guide me as to what to do with it.
 
658215 Post Posted: Wed Jul 08, 2009 9:02 am Thank this member for this postReply with quote Back To Top

ramos Linked Subscriber 19/11/2012 


Age: 74

Joined: Nov 01, 2008

Posts: 505

MH: autosleeper Clubman Aniversary

Campsites

Gender: None specified

blank.gif

Status: Offline

lgbzone wrote:
Hi

I haven't used java for this and can't easily see how it would work.

This should be done server side not client side to get results, if the code that is trying to get the modified date and write it to the webpage stream is java script, then it runs on the client machine, the person/machine viewing the page and doesn't have access to the source files (or their modified attribute), only what is serverd by the web server. to do this correctly the webpage should be written in dynamic html, for example ASP, this way the html source is created on the fly at the server and sent to the client, the server can check the last modified attribute of the ASP source file and place it on the html page as it's created for the client. alternatively if the webpage content is stored in a database, then the last modified date would be a field in the db against the content, and would be taken from there, again by the server before the html is sent to the client.

Hi again. since my last quote Ive been digging. My problem maybe down to piczo not accepting asp. HTML is ok but thats about it. I have contacted them to confirm.If this is the case then my problem is unresolveable.But thanks for your help anyway.
 Lat updated
658228 Post Posted: Wed Jul 08, 2009 9:16 am Thank this member for this postReply with quote Back To Top

Waggys Subscriber 22/07/2012 


Joined: Jul 15, 2008

Posts: 89

MH: Pilote Ref P650TP

Campsites

Gender: None specified

Location: Derbyshire

uk.gif

Status: Offline

Hi,

Have a go with this....a little java script that can be seen working on the users website....

http://www.whytehouse.com/lastmodified.html

Dave
 
658233 Post Posted: Wed Jul 08, 2009 9:23 am Thank this member for this postReply with quote Back To Top

val33 Subscriber 30/05/2012 


Joined: Jun 29, 2008

Posts: 152

MH: Niesmann + Bischoff Arto 69GL

Campsites

Gender: None specified

eu.gif

Status: Offline

or this:

http://www.javascriptkit.com/script/cut8.shtml


Val
 Re: Lat updated
658247 Post Posted: Wed Jul 08, 2009 9:35 am Thank this member for this postReply with quote Back To Top

ramos Linked Subscriber 19/11/2012 


Age: 74

Joined: Nov 01, 2008

Posts: 505

MH: autosleeper Clubman Aniversary

Campsites

Gender: None specified

blank.gif

Status: Offline

Waggys wrote:
Hi,

Have a go with this....a little java script that can be seen working on the users website....

http://www.whytehouse.com/lastmodified.html

Dave
.
Cheers Dave Ill give it a go
 
658249 Post Posted: Wed Jul 08, 2009 9:35 am Thank this member for this postReply with quote Back To Top

ramos Linked Subscriber 19/11/2012 


Age: 74

Joined: Nov 01, 2008

Posts: 505

MH: autosleeper Clubman Aniversary

Campsites

Gender: None specified

blank.gif

Status: Offline

val33 wrote:
or this:

http://www.javascriptkit.com/script/cut8.shtml


Val

cheers Val Ill give this a go to
Goto page 1, 2  Next
Members do not see the Adverts Below
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You cannot download files in this forum
All times are GMT + 1 Hour  
Page 1 of 2  
Goto page 1, 2  Next


Post new topic Reply to topic Printer-friendly version

Tweet This Topic Facebook del.icio.us digg blogmarks Furl Reddit technorati Yahoo Google Go to MAIN SITE Front Page