Click here to Skip to main content
16,016,227 members
Home / Discussions / Web Development
   

Web Development

 
QuestionVirtual Application Pool Crashes Pin
happyheartcs28-Oct-06 23:42
happyheartcs28-Oct-06 23:42 
QuestionHow to get the page event which indicates that a page is shown to the interface? Pin
Lior S28-Oct-06 22:49
Lior S28-Oct-06 22:49 
AnswerRe: How to get the page event which indicates that a page is shown to the interface? Pin
Bradml28-Oct-06 23:45
Bradml28-Oct-06 23:45 
GeneralRe: How to get the page event which indicates that a page is shown to the interface? Pin
Lior S30-Oct-06 1:53
Lior S30-Oct-06 1:53 
Questionmake your home page [modified] Pin
militiaware28-Oct-06 20:36
militiaware28-Oct-06 20:36 
AnswerRe: make your home page Pin
UltraCoder29-Oct-06 10:42
UltraCoder29-Oct-06 10:42 
Questionthreading in ASP .NET with AJAX Pin
mmiesi28-Oct-06 3:42
mmiesi28-Oct-06 3:42 
AnswerRe: threading in ASP .NET with AJAX Pin
Guffa28-Oct-06 4:40
Guffa28-Oct-06 4:40 
You can't. Using timers on the server is useless in this context, as the server has no way of sending anything to the page after it has been created. Although the Page object may still remain in memory, it's response has already been sent to the browser, so doing anything to the Page object has no effect at all on the page displayed in the browser.

Anything that you want to do using time delay has to be initiated from the browser. AJAX is useful to do updates without having to reload the page, but still the request comes from the browser, the server can not send anything to the browser on it's own accord.

Use the window.setInterval method in Javascript to create a timer in the web page.


---
b { font-weight: normal; }

GeneralRe: threading in ASP .NET with AJAX Pin
mmiesi30-Oct-06 5:52
mmiesi30-Oct-06 5:52 
GeneralRe: threading in ASP .NET with AJAX Pin
led mike30-Oct-06 6:25
led mike30-Oct-06 6:25 
AnswerRe: threading in ASP .NET with AJAX Pin
Guffa30-Oct-06 6:38
Guffa30-Oct-06 6:38 
QuestionAni_SE Do you have a question ... Pin
User 171649227-Oct-06 1:53
professionalUser 171649227-Oct-06 1:53 
AnswerRe: Ani_SE Do you have a question ... Pin
alex.barylski29-Oct-06 16:58
alex.barylski29-Oct-06 16:58 
QuestionArchitecture issue (IIS and SQL server on same machine?) Pin
harinath26-Oct-06 4:52
professionalharinath26-Oct-06 4:52 
AnswerRe: Architecture issue (IIS and SQL server on same machine?) Pin
Bradml27-Oct-06 0:46
Bradml27-Oct-06 0:46 
AnswerRe: Architecture issue (IIS and SQL server on same machine?) Pin
tarunbounthiyal1-Nov-06 22:11
tarunbounthiyal1-Nov-06 22:11 
QuestionIs this doable? Pin
sharma sanjeev25-Oct-06 22:01
sharma sanjeev25-Oct-06 22:01 
AnswerRe: Is this doable? Pin
Bradml26-Oct-06 0:43
Bradml26-Oct-06 0:43 
QuestionPassing vb.net class object to c# class method [modified] Pin
pdeep25-Oct-06 18:04
pdeep25-Oct-06 18:04 
AnswerRe: Passing vb.net class object to c# class method Pin
Akhilesh Yadav25-Oct-06 19:04
Akhilesh Yadav25-Oct-06 19:04 
GeneralRe: Passing vb.net class object to c# class method Pin
pdeep25-Oct-06 19:18
pdeep25-Oct-06 19:18 
GeneralRe: Passing vb.net class object to c# class method Pin
Akhilesh Yadav25-Oct-06 19:42
Akhilesh Yadav25-Oct-06 19:42 
GeneralRe: Passing vb.net class object to c# class method Pin
pdeep25-Oct-06 19:50
pdeep25-Oct-06 19:50 
GeneralRe: Passing vb.net class object to c# class method Pin
Akhilesh Yadav26-Oct-06 0:22
Akhilesh Yadav26-Oct-06 0:22 
GeneralRe: Passing vb.net class object to c# class method Pin
pdeep26-Oct-06 19:05
pdeep26-Oct-06 19:05 

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.