Click here to Skip to main content
15,911,785 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
QuestionI need to make a application on BizTalk server using .NET Pin
Kumar Arun25-Sep-08 18:44
Kumar Arun25-Sep-08 18:44 
JokeRe: I need to make a application on BizTalk server using .NET Pin
Paul Conrad27-Sep-08 5:24
professionalPaul Conrad27-Sep-08 5:24 
AnswerRe: I need to make a application on BizTalk server using .NET Pin
Kevin McFarlane28-Sep-08 3:24
Kevin McFarlane28-Sep-08 3:24 
Question.NET and C++ Pin
BobInNJ24-Sep-08 6:22
BobInNJ24-Sep-08 6:22 
AnswerRe: .NET and C++ Pin
Mark Salsbery24-Sep-08 7:56
Mark Salsbery24-Sep-08 7:56 
AnswerRe: .NET and C++ Pin
Kevin McFarlane27-Sep-08 7:25
Kevin McFarlane27-Sep-08 7:25 
QuestionHow to disable the browser cache in WebBrowser Pin
Raaya123-Sep-08 11:13
Raaya123-Sep-08 11:13 
AnswerRe: How to disable the browser cache in WebBrowser Pin
Kumar Arun25-Sep-08 18:58
Kumar Arun25-Sep-08 18:58 
Please paste this code in page_load event

Response.Expires = 0;
Response.ExpiresAbsolute = DateTime.Now.AddDays(-1);
Response.CacheControl = "no-cache";
Response.AddHeader("Pragma", "no-cache");
Response.AddHeader("cache-control", "private");

Let me know if you need more detail.

Thanks,
Arun

Arun Kr

GeneralRe: How to disable the browser cache in WebBrowser Pin
Raaya129-Sep-08 10:56
Raaya129-Sep-08 10:56 
QuestionTextRange Fields in Office 2007 Pin
Patrick Kilgore23-Sep-08 10:01
Patrick Kilgore23-Sep-08 10:01 
AnswerRe: TextRange Fields in Office 2007 Pin
Patrick Kilgore23-Sep-08 11:36
Patrick Kilgore23-Sep-08 11:36 
QuestionAjax error handlling Pin
valerian.precop22-Sep-08 22:34
valerian.precop22-Sep-08 22:34 
AnswerRe: Ajax error handlling Pin
Patrick Kilgore23-Sep-08 10:05
Patrick Kilgore23-Sep-08 10:05 
QuestionCompiling VS 6.0 code in VS2005 Pin
SNI22-Sep-08 20:50
SNI22-Sep-08 20:50 
AnswerRe: Compiling VS 6.0 code in VS2005 Pin
led mike23-Sep-08 5:47
led mike23-Sep-08 5:47 
AnswerRe: Compiling VS 6.0 code in VS2005 Pin
The_Mega_ZZTer27-Sep-08 5:43
The_Mega_ZZTer27-Sep-08 5:43 
QuestionError- HTTP Error 500.19 on Win Server 2008 Pin
Amit Battan Ror22-Sep-08 18:47
Amit Battan Ror22-Sep-08 18:47 
AnswerRe: Error- HTTP Error 500.19 on Win Server 2008 Pin
John_Adams23-Sep-08 23:18
John_Adams23-Sep-08 23:18 
GeneralRe: Error- HTTP Error 500.19 on Win Server 2008 Pin
Amit Battan Ror6-Oct-08 19:48
Amit Battan Ror6-Oct-08 19:48 
Questionframework or Visualstudio needed? Pin
balu1234522-Sep-08 9:16
balu1234522-Sep-08 9:16 
AnswerCross-post Pin
Wendelius23-Sep-08 8:37
mentorWendelius23-Sep-08 8:37 
QuestionError while Installing the .NET 3.5 framework Pin
Amit Battan Ror22-Sep-08 2:35
Amit Battan Ror22-Sep-08 2:35 
AnswerRe: Error while Installing the .NET 3.5 framework Pin
led mike22-Sep-08 4:28
led mike22-Sep-08 4:28 
GeneralRe: Error while Installing the .NET 3.5 framework Pin
Mark Salsbery22-Sep-08 6:15
Mark Salsbery22-Sep-08 6:15 
GeneralRe: Error while Installing the .NET 3.5 framework Pin
led mike22-Sep-08 6:47
led mike22-Sep-08 6:47 

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.