Click here to Skip to main content
15,917,795 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionHow to create a customized pop up window in the top of the page if the browser's pop up blocker is enabled Pin
Beniston12054-Aug-12 1:10
Beniston12054-Aug-12 1:10 
AnswerRe: How to create a customized pop up window in the top of the page if the browser's pop up blocker is enabled Pin
Eddy Vluggen4-Aug-12 6:12
professionalEddy Vluggen4-Aug-12 6:12 
AnswerRe: How to create a customized pop up window in the top of the page if the browser's pop up blocker is enabled Pin
Sandeep Mewara4-Aug-12 19:45
mveSandeep Mewara4-Aug-12 19:45 
Questionset watermark for textbox Pin
Jassim Rahma3-Aug-12 12:09
Jassim Rahma3-Aug-12 12:09 
AnswerRe: set watermark for textbox Pin
R. Giskard Reventlov3-Aug-12 12:20
R. Giskard Reventlov3-Aug-12 12:20 
Questionproblem with dynamic displaying data Pin
samio073-Aug-12 4:25
samio073-Aug-12 4:25 
Questionhow to let Google do this for me? Pin
Jassim Rahma3-Aug-12 1:05
Jassim Rahma3-Aug-12 1:05 
AnswerRe: how to let Google do this for me? Pin
Eddy Vluggen3-Aug-12 2:51
professionalEddy Vluggen3-Aug-12 2:51 
AnswerRe: how to let Google do this for me? Pin
jkirkerx3-Aug-12 9:54
professionaljkirkerx3-Aug-12 9:54 
QuestionI have done login page in asp.net mvc pattern.But,im getting one run time error Pin
rayuduvkr3-Aug-12 0:19
rayuduvkr3-Aug-12 0:19 
AnswerRe: I have done login page in asp.net mvc pattern.But,im getting one run time error Pin
Pete O'Hanlon3-Aug-12 0:43
mvePete O'Hanlon3-Aug-12 0:43 
AnswerRe: I have done login page in asp.net mvc pattern.But,im getting one run time error Pin
Tarun Mangukiya4-Aug-12 21:38
Tarun Mangukiya4-Aug-12 21:38 
Questionasp.net Pin
Sasikumar.mohan2-Aug-12 19:56
Sasikumar.mohan2-Aug-12 19:56 
AnswerRe: asp.net Pin
Sandeep Mewara2-Aug-12 21:23
mveSandeep Mewara2-Aug-12 21:23 
QuestionClose the ChannelFactory connection Pin
indian1432-Aug-12 6:01
indian1432-Aug-12 6:01 
AnswerRe: Close the ChannelFactory connection Pin
jkirkerx3-Aug-12 11:09
professionaljkirkerx3-Aug-12 11:09 
This article says the best way is to load the class is in a constructor, so it's only loads once, and not the service itself, in which it loads a new instance of the class each time the service is called.

So your speed or crash issue is probably because the garbage collector is not able to clean your memory heap, and does not know which area or segment of the heap to clean or deallocate, and keeps using the last allocation of the instance. I would consider that leaking memory on the server.

I may be wrong, feel free to school me on this.

I know how to write constructors and deconstructors with callbacks in c++, but I'm kind of fuzzy on it for asp.net. From looking at this tutorial, it looks the same if your coding in csharp.

You'll probably have to write a new class using the constructor, and perhaps add a deconstructor when your totally done with the class. Then come up with a new way to call the service.

[Constructors and deconstuctors]
http://csharp.net-tutorials.com/classes/constructors-and-destructors/[^]

[Reference or credit to]
http://stackoverflow.com/questions/1576559/need-a-way-to-close-a-channelfactory-when-the-client-only-know-of-the-interface[^]
GeneralRe: Close the ChannelFactory connection Pin
jkirkerx3-Aug-12 12:23
professionaljkirkerx3-Aug-12 12:23 
GeneralRe: Close the ChannelFactory connection Pin
indian1434-Aug-12 16:59
indian1434-Aug-12 16:59 
GeneralRe: Close the ChannelFactory connection Pin
jkirkerx5-Aug-12 11:00
professionaljkirkerx5-Aug-12 11:00 
Questionperformance tune a 2010 web app Pin
dcof2-Aug-12 4:25
dcof2-Aug-12 4:25 
AnswerRe: performance tune a 2010 web app Pin
jkirkerx3-Aug-12 10:52
professionaljkirkerx3-Aug-12 10:52 
GeneralCreating Composite Controls ASP.NET 4.0 Pin
RookieCoder_NG1-Aug-12 19:12
RookieCoder_NG1-Aug-12 19:12 
GeneralRe: Creating Composite Controls ASP.NET 4.0 Pin
David Mujica2-Aug-12 8:05
David Mujica2-Aug-12 8:05 
GeneralRe: Creating Composite Controls ASP.NET 4.0 Pin
RookieCoder_NG2-Aug-12 18:08
RookieCoder_NG2-Aug-12 18:08 
GeneralRe: Creating Composite Controls ASP.NET 4.0 Pin
Ahmed Abdulrahman4-Aug-12 4:44
Ahmed Abdulrahman4-Aug-12 4:44 

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.