Wrox Home  
Search P2P Archive for: Go

  Return to Index  

javascript thread: Problem in including .js


Message #1 by Shankar <shankar_b_g@y...> on Tue, 19 Feb 2002 03:26:47 -0800 (PST)
Force the page to reload from the server every time by disabling cache:

<%
Response.Expires = 60
Response.Expiresabsolute = Now() - 1
Response.AddHeader "pragma","no-cache"
Response.AddHeader "cache-control","private"
Response.CacheControl = "no-cache"
%>


> Hi All,
> 
>     I have an asp file which includes a .js file.
> In Netscape, first time, all validations in .js file
> is working fine. After submit, when the user presses
> back button of the browser, none of the validations
> are working in that page. How do I make it work ?
> 
> Any help would be appreciated. Thanks in Advance.
> 
> Regards,
> Shankar
> 
> __________________________________________________
> Do You Yahoo!?
> Yahoo! Sports - Coverage of the 2002 Olympic Games
> http://sports.yahoo.com

  Return to Index