Click here to Skip to main content
15,915,081 members
Home / Discussions / C#
   

C#

 
GeneralRe: Task Bar Pin
Heath Stewart15-Mar-04 10:01
protectorHeath Stewart15-Mar-04 10:01 
Generalregd dataset Pin
karteek15-Mar-04 6:46
karteek15-Mar-04 6:46 
GeneralRe: regd dataset Pin
Heath Stewart15-Mar-04 6:56
protectorHeath Stewart15-Mar-04 6:56 
Generalcached dll's Pin
cmarmr15-Mar-04 6:04
cmarmr15-Mar-04 6:04 
GeneralRe: cached dll's Pin
Heath Stewart15-Mar-04 6:20
protectorHeath Stewart15-Mar-04 6:20 
GeneralRe: cached dll's Pin
Heath Stewart15-Mar-04 6:22
protectorHeath Stewart15-Mar-04 6:22 
GeneralRe: cached dll's Pin
cmarmr15-Mar-04 7:08
cmarmr15-Mar-04 7:08 
GeneralRe: cached dll's Pin
Heath Stewart15-Mar-04 7:15
protectorHeath Stewart15-Mar-04 7:15 
The DLL is supposed to be cached for faster execution. Keep in mind that your web application using ASP.NET is an instance of an application with many threads that runs until 1) it changes and requires a restart, which the ASP.NET worker process does automatically, 2) you stop IIS, or 3) you shutdown/restart the server.

If your database is being cached, then either your DLL is causing the problem and should not cache data (in which case, it sounds like it's not multi-threaded and isn't expecting many requests from different threads) or you are not closing connections to your database. In either case, I'm pretty sure this is not the fault of ASP.NET. You're going to have to examine your DLL and make sure that it can handle multiple requests on different threads (I know FoxPro can, but it's been over a decade since I've worked with it so I can't help you there much) and that it doesn't cache data - at least not globally (i.e., for all threads).

 

Microsoft MVP, Visual C#
My Articles
GeneralRe: cached dll's Pin
cmarmr15-Mar-04 8:34
cmarmr15-Mar-04 8:34 
GeneralRe: cached dll's Pin
Heath Stewart15-Mar-04 11:34
protectorHeath Stewart15-Mar-04 11:34 
GeneralRe: cached dll's Pin
cmarmr15-Mar-04 15:16
cmarmr15-Mar-04 15:16 
Generalw95 application Pin
Rob Tomson15-Mar-04 4:29
Rob Tomson15-Mar-04 4:29 
GeneralRe: w95 application Pin
Heath Stewart15-Mar-04 5:20
protectorHeath Stewart15-Mar-04 5:20 
GeneralRe: w95 application Pin
Rob Tomson15-Mar-04 5:44
Rob Tomson15-Mar-04 5:44 
GeneralRe: w95 application Pin
Heath Stewart15-Mar-04 5:45
protectorHeath Stewart15-Mar-04 5:45 
Generalmultiple workstations to one database Pin
ASGill15-Mar-04 4:28
ASGill15-Mar-04 4:28 
GeneralRe: multiple workstations to one database Pin
Heath Stewart15-Mar-04 5:18
protectorHeath Stewart15-Mar-04 5:18 
Questionfolder path syntax? Pin
Anonymous15-Mar-04 3:32
Anonymous15-Mar-04 3:32 
AnswerRe: folder path syntax? Pin
John Fisher15-Mar-04 4:15
John Fisher15-Mar-04 4:15 
AnswerRe: folder path syntax? Pin
Dave Kreskowiak15-Mar-04 7:05
mveDave Kreskowiak15-Mar-04 7:05 
Questionhow can i run client software from web? Pin
agakyurek15-Mar-04 3:15
agakyurek15-Mar-04 3:15 
AnswerRe: how can i run client software from web? Pin
Heath Stewart15-Mar-04 5:14
protectorHeath Stewart15-Mar-04 5:14 
GeneralPrinting a blank page Pin
Shaun Becker15-Mar-04 2:47
Shaun Becker15-Mar-04 2:47 
GeneralRe: Printing a blank page Pin
John Fisher15-Mar-04 4:13
John Fisher15-Mar-04 4:13 
GeneralRe: Printing a blank page Pin
Shaun Becker15-Mar-04 4:36
Shaun Becker15-Mar-04 4:36 

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.