Click here to Skip to main content
15,922,155 members
Home / Discussions / Web Development
   

Web Development

 
AnswerRe: Javascript file existing checking Pin
Torsten Mauz29-Nov-06 10:12
Torsten Mauz29-Nov-06 10:12 
GeneralRe: Javascript file existing checking Pin
Clickok29-Nov-06 11:34
Clickok29-Nov-06 11:34 
GeneralRe: Javascript file existing checking Pin
Torsten Mauz29-Nov-06 11:46
Torsten Mauz29-Nov-06 11:46 
GeneralRe: Javascript file existing checking Pin
Clickok29-Nov-06 11:54
Clickok29-Nov-06 11:54 
GeneralRe: Javascript file existing checking Pin
Torsten Mauz30-Nov-06 1:35
Torsten Mauz30-Nov-06 1:35 
QuestionWORD SEARCHING AND LISTING CODE ON HTML PAGES [modified] Pin
MARSHAX29-Nov-06 1:18
MARSHAX29-Nov-06 1:18 
GeneralASP.NET Caching Problem Pin
Brady Kelly29-Nov-06 0:27
Brady Kelly29-Nov-06 0:27 
GeneralRe: ASP.NET Caching Problem Pin
Torsten Mauz29-Nov-06 11:59
Torsten Mauz29-Nov-06 11:59 
To be honest it is more likely to be your browser caching things. Unless you have some cache directives used, then afaik asp.net will not cache your page.

Try the following:

Response.CacheControl = "no-cache";
Response.AddHeader("Pragma", "no-cache");
Response.Expires = -1;

But you could also add the following to the top of your aspx file:
<%@ OutputCache Location="None" VaryByParam="None" %>

Or you can achieve this programatically by doing:
Response.Cache.SetCacheability(HttpCacheability.NoCache);

HTH
QuestionHow to use CDONTS in UNIX Server using ASP Pin
Debi Prasad28-Nov-06 23:42
Debi Prasad28-Nov-06 23:42 
AnswerRe: How to use CDONTS in UNIX Server using ASP Pin
Bradml29-Nov-06 0:09
Bradml29-Nov-06 0:09 
GeneralRe: How to use CDONTS in UNIX Server using ASP Pin
Brady Kelly29-Nov-06 0:28
Brady Kelly29-Nov-06 0:28 
QuestionAbout the CodeProject page "script/comments/user_reply.asp" Pin
Davids_Maguire28-Nov-06 22:07
Davids_Maguire28-Nov-06 22:07 
AnswerRe: About the CodeProject page "script/comments/user_reply.asp" Pin
Guffa29-Nov-06 0:16
Guffa29-Nov-06 0:16 
GeneralRe: About the CodeProject page "script/comments/user_reply.asp" Pin
Davids_Maguire29-Nov-06 1:22
Davids_Maguire29-Nov-06 1:22 
AnswerRe: About the CodeProject page "script/comments/user_reply.asp" Pin
Guffa29-Nov-06 13:21
Guffa29-Nov-06 13:21 
Questionproblem with frame levels Pin
Wim Engberts28-Nov-06 22:00
Wim Engberts28-Nov-06 22:00 
AnswerRe: problem with frame levels Pin
Bradml28-Nov-06 22:44
Bradml28-Nov-06 22:44 
GeneralRe: problem with frame levels Pin
Wim Engberts28-Nov-06 22:50
Wim Engberts28-Nov-06 22:50 
GeneralRe: problem with frame levels Pin
Bradml28-Nov-06 22:56
Bradml28-Nov-06 22:56 
GeneralRe: problem with frame levels Pin
Wim Engberts28-Nov-06 23:10
Wim Engberts28-Nov-06 23:10 
GeneralRe: problem with frame levels Pin
Bradml29-Nov-06 0:34
Bradml29-Nov-06 0:34 
GeneralRe: problem with frame levels Pin
Wim Engberts29-Nov-06 0:43
Wim Engberts29-Nov-06 0:43 
GeneralRe: problem with frame levels Pin
Bradml29-Nov-06 0:50
Bradml29-Nov-06 0:50 
GeneralRe: problem with frame levels Pin
Wim Engberts29-Nov-06 1:24
Wim Engberts29-Nov-06 1:24 
GeneralRe: problem with frame levels Pin
Wim Engberts28-Nov-06 23:30
Wim Engberts28-Nov-06 23:30 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.