Click here to Skip to main content
15,902,938 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: getting list of users Pin
ptvce18-Nov-07 21:04
ptvce18-Nov-07 21:04 
Generalgetting list of users Pin
Sarani Ravindran19-Nov-07 17:22
Sarani Ravindran19-Nov-07 17:22 
GeneralRe: getting list of users Pin
ptvce19-Nov-07 18:50
ptvce19-Nov-07 18:50 
Questionaccess the FoxPro .VUE (view file) using ASP.NET Pin
kisna_madhusudan18-Nov-07 17:42
kisna_madhusudan18-Nov-07 17:42 
GeneralRe: access the FoxPro .VUE (view file) using ASP.NET Pin
John-ph18-Nov-07 17:46
John-ph18-Nov-07 17:46 
Questionaccess the FoxPro .VUE (view file) using ASP.NET Pin
june2318-Nov-07 17:38
june2318-Nov-07 17:38 
QuestionHow to expire page when moved to next page.... Pin
KBM7318-Nov-07 10:43
KBM7318-Nov-07 10:43 
AnswerRe: How to expire page when moved to next page.... Pin
SABhatti18-Nov-07 13:20
SABhatti18-Nov-07 13:20 
ASP.NET 1:

Response.ExpiresAbsolute = DateTime.Now.AddDays(-1)
Response.CacheControl = "no-cache";
Response.Expires = -500;

ASP.NET 2:

Response.Cache.SetCacheability(HttpCacheability.NoCache);
Response.Cache.SetExpires(DateTime.Now.AddDays(-1)); //or a date much earlier than current time


-----

QuestionAdd keyword and description info to database Pin
Matthew Hansel18-Nov-07 10:22
Matthew Hansel18-Nov-07 10:22 
AnswerRe: Add keyword and description info to database Pin
Not Active18-Nov-07 10:27
mentorNot Active18-Nov-07 10:27 
GeneralRe: Add keyword and description info to database Pin
Matthew Hansel18-Nov-07 11:01
Matthew Hansel18-Nov-07 11:01 
GeneralRe: Add keyword and description info to database Pin
Not Active18-Nov-07 13:27
mentorNot Active18-Nov-07 13:27 
QuestionSending email in ASP.NET 2.0 Pin
nickabradley18-Nov-07 5:18
nickabradley18-Nov-07 5:18 
AnswerRe: Sending email in ASP.NET 2.0 Pin
Christian Graus18-Nov-07 10:40
protectorChristian Graus18-Nov-07 10:40 
GeneralRe: Sending email in ASP.NET 2.0 Pin
nickabradley18-Nov-07 10:43
nickabradley18-Nov-07 10:43 
GeneralRe: Sending email in ASP.NET 2.0 Pin
Michael Sync18-Nov-07 15:09
Michael Sync18-Nov-07 15:09 
GeneralRe: Sending email in ASP.NET 2.0 Pin
nickabradley18-Nov-07 15:23
nickabradley18-Nov-07 15:23 
GeneralRe: Sending email in ASP.NET 2.0 Pin
Michael Sync18-Nov-07 15:36
Michael Sync18-Nov-07 15:36 
GeneralRe: Sending email in ASP.NET 2.0 Pin
nickabradley18-Nov-07 16:07
nickabradley18-Nov-07 16:07 
GeneralRe: Sending email in ASP.NET 2.0 Pin
Michael Sync18-Nov-07 16:27
Michael Sync18-Nov-07 16:27 
GeneralRe: Sending email in ASP.NET 2.0 Pin
nickabradley18-Nov-07 16:33
nickabradley18-Nov-07 16:33 
GeneralRe: Sending email in ASP.NET 2.0 Pin
Christian Graus18-Nov-07 17:59
protectorChristian Graus18-Nov-07 17:59 
GeneralRe: Sending email in ASP.NET 2.0 Pin
nickabradley19-Nov-07 15:48
nickabradley19-Nov-07 15:48 
GeneralRe: Sending email in ASP.NET 2.0 Pin
Michael Sync19-Nov-07 15:55
Michael Sync19-Nov-07 15:55 
GeneralRe: Sending email in ASP.NET 2.0 Pin
nickabradley19-Nov-07 16:12
nickabradley19-Nov-07 16:12 

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.