473,324 Members | 2,511 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,324 software developers and data experts.

Automatic recover ASP web page?

Ben
Hi,

In the first start page, I use JavaScript window.open to open a new
ASP IE
window that is used to display real-time stock price and refresh each
10 seconds.

The problem is when ASP server restart, the real-time page will
display "... cannot display the webpage" and cannot back to normal
page automatically.
Is there any solution to let it recovers automatcally after ASP
server
down temporarily?
Thanks,
Ben

Feb 20 '07 #1
6 2634
I assume you have a page that refreshes itself in your popup. Instead load
into the popup a page that is a FRAMESET with one FRAME that is your stock
page. The frameset page will then have a javascript timer that refreshes
the content of the frame every 10 seconds.

"Ben" <wu******@yahoo.comwrote in message
news:11*********************@m58g2000cwm.googlegro ups.com...
Hi,

In the first start page, I use JavaScript window.open to open a new
ASP IE
window that is used to display real-time stock price and refresh each
10 seconds.

The problem is when ASP server restart, the real-time page will
display "... cannot display the webpage" and cannot back to normal
page automatically.
Is there any solution to let it recovers automatcally after ASP
server
down temporarily?
Thanks,
Ben

Feb 20 '07 #2
Ben
Thank you for the good solution!

I didn't use FRAMESET because it seems not working with ASP.NET
(VS2005).
I use JavaScript to repeat open the popup each 10 seconds. It works
fine.

Thank you very much.

Ben

On Feb 20, 11:41 am, "Aidy" <a...@noemail.xxxa.comwrote:
I assume you have apagethat refreshes itself in your popup. Instead load
into the popup apagethat is a FRAMESET with one FRAME that is your stockpage. The framesetpagewill then have a javascript timer that refreshes
the content of the frame every 10 seconds.

"Ben" <wubin...@yahoo.comwrote in message

news:11*********************@m58g2000cwm.googlegro ups.com...
Hi,
In the first startpage, I use JavaScript window.open to open a new
ASP IE
window that is used to display real-time stock price and refresh each
10 seconds.
The problem is when ASP server restart, the real-timepagewill
display "... cannot display the webpage" and cannot back to normal
pageautomatically.
Is there any solution to let it recovers automatcally after ASP
server
down temporarily?
Thanks,
Ben- Hide quoted text -

- Show quoted text -

Feb 20 '07 #3
Hi,

Ben wrote:
Thank you for the good solution!

I didn't use FRAMESET because it seems not working with ASP.NET
(VS2005).
I use JavaScript to repeat open the popup each 10 seconds. It works
fine.

Thank you very much.

Ben
Framesets work very well with ASP.NET. They are not really recommended
anymore for various reasons, but in your case, they would be friendlier
than opening a new pop-up automatically every N seconds (pop-up which
would be blocked by most pop-up blockers anyway).

HTH,
Laurent
>
On Feb 20, 11:41 am, "Aidy" <a...@noemail.xxxa.comwrote:
>I assume you have apagethat refreshes itself in your popup. Instead load
into the popup apagethat is a FRAMESET with one FRAME that is your stockpage. The framesetpagewill then have a javascript timer that refreshes
the content of the frame every 10 seconds.

"Ben" <wubin...@yahoo.comwrote in message

news:11*********************@m58g2000cwm.googlegr oups.com...
>>Hi,
In the first startpage, I use JavaScript window.open to open a new
ASP IE
window that is used to display real-time stock price and refresh each
10 seconds.
The problem is when ASP server restart, the real-timepagewill
display "... cannot display the webpage" and cannot back to normal
pageautomatically.
Is there any solution to let it recovers automatcally after ASP
server
down temporarily?
Thanks,
Ben- Hide quoted text -
- Show quoted text -


--
Laurent Bugnion [MVP ASP.NET]
Software engineering, Blog: http://www.galasoft-LB.ch
PhotoAlbum: http://www.galasoft-LB.ch/pictures
Support children in Calcutta: http://www.calcutta-espoir.ch
Feb 21 '07 #4
Ben
Yes, FrameSets works with ASP.NET but it always give me following
error message:

Validation (XHTML 1.0 Transitional): Element 'frame' is not supported.

Is there a way to get rid of this error message?

Thanks,
On Feb 21, 5:52 am, "Laurent Bugnion [MVP]" <galasoft...@bluewin.ch>
wrote:
Hi,

Ben wrote:
Thank you for the good solution!
I didn't use FRAMESET because it seems not working with ASP.NET
(VS2005).
I use JavaScript to repeat open the popup each 10 seconds. It works
fine.
Thank you very much.
Ben

Framesets work very well with ASP.NET. They are not really recommended
anymore for various reasons, but in your case, they would be friendlier
than opening a new pop-up automatically every N seconds (pop-up which
would be blocked by most pop-up blockers anyway).

HTH,
Laurent


On Feb 20, 11:41 am, "Aidy" <a...@noemail.xxxa.comwrote:
I assume you have apagethat refreshes itself in your popup. Instead load
into the popup apagethat is a FRAMESET with one FRAME that is your stockpage. The framesetpagewill then have a javascript timer that refreshes
the content of the frame every 10 seconds.
"Ben" <wubin...@yahoo.comwrote in message
>news:11*********************@m58g2000cwm.googlegr oups.com...
>Hi,
In the first startpage, I use JavaScript window.open to open a new
ASP IE
window that is used to display real-time stock price and refresh each
10 seconds.
The problem is when ASP server restart, the real-timepagewill
display "... cannot display the webpage" and cannot back to normal
pageautomatically.
Is there any solution to let it recovers automatcally after ASP
server
down temporarily?
Thanks,
Ben- Hide quoted text -
- Show quoted text -

--
Laurent Bugnion [MVP ASP.NET]
Software engineering, Blog:http://www.galasoft-LB.ch
PhotoAlbum:http://www.galasoft-LB.ch/pictures
Support children in Calcutta:http://www.calcutta-espoir.ch- Hide quoted text -

- Show quoted text -

Feb 21 '07 #5
It just means this is not part of the official specification you claim your
page is using. It doesn't mean it won't work.

You should bet able to get rid of this message by switching to the XHTML 1.0
Frameset specification.
"Ben" <wu******@yahoo.coma écrit dans le message de news:
11**********************@k78g2000cwa.googlegroups. com...
Yes, FrameSets works with ASP.NET but it always give me following
error message:

Validation (XHTML 1.0 Transitional): Element 'frame' is not supported.

Is there a way to get rid of this error message?

Thanks,
On Feb 21, 5:52 am, "Laurent Bugnion [MVP]" <galasoft...@bluewin.ch>
wrote:
>Hi,

Ben wrote:
Thank you for the good solution!
I didn't use FRAMESET because it seems not working with ASP.NET
(VS2005).
I use JavaScript to repeat open the popup each 10 seconds. It works
fine.
Thank you very much.
Ben

Framesets work very well with ASP.NET. They are not really recommended
anymore for various reasons, but in your case, they would be friendlier
than opening a new pop-up automatically every N seconds (pop-up which
would be blocked by most pop-up blockers anyway).

HTH,
Laurent


On Feb 20, 11:41 am, "Aidy" <a...@noemail.xxxa.comwrote:
I assume you have apagethat refreshes itself in your popup. Instead
load
into the popup apagethat is a FRAMESET with one FRAME that is your
stockpage. The framesetpagewill then have a javascript timer that
refreshes
the content of the frame every 10 seconds.
>"Ben" <wubin...@yahoo.comwrote in message
>>news:11*********************@m58g2000cwm.googleg roups.com...
>>Hi,
In the first startpage, I use JavaScript window.open to open a new
ASP IE
window that is used to display real-time stock price and refresh each
10 seconds.
The problem is when ASP server restart, the real-timepagewill
display "... cannot display the webpage" and cannot back to normal
pageautomatically.
Is there any solution to let it recovers automatcally after ASP
server
down temporarily?
Thanks,
Ben- Hide quoted text -
- Show quoted text -

--
Laurent Bugnion [MVP ASP.NET]
Software engineering, Blog:http://www.galasoft-LB.ch
PhotoAlbum:http://www.galasoft-LB.ch/pictures
Support children in Calcutta:http://www.calcutta-espoir.ch- Hide quoted
text -

- Show quoted text -


Feb 21 '07 #6
Try :
http://msdn2.microsoft.com/en-us/f940516c(VS.80).aspx
for details
"Patrice" <http://www.chez.com/scribe/a écrit dans le message de news:
Oa*************@TK2MSFTNGP04.phx.gbl...
It just means this is not part of the official specification you claim
your page is using. It doesn't mean it won't work.

You should bet able to get rid of this message by switching to the XHTML
1.0 Frameset specification.
"Ben" <wu******@yahoo.coma écrit dans le message de news:
11**********************@k78g2000cwa.googlegroups. com...
>Yes, FrameSets works with ASP.NET but it always give me following
error message:

Validation (XHTML 1.0 Transitional): Element 'frame' is not supported.

Is there a way to get rid of this error message?

Thanks,
On Feb 21, 5:52 am, "Laurent Bugnion [MVP]" <galasoft...@bluewin.ch>
wrote:
>>Hi,

Ben wrote:
Thank you for the good solution!

I didn't use FRAMESET because it seems not working with ASP.NET
(VS2005).
I use JavaScript to repeat open the popup each 10 seconds. It works
fine.

Thank you very much.

Ben

Framesets work very well with ASP.NET. They are not really recommended
anymore for various reasons, but in your case, they would be friendlier
than opening a new pop-up automatically every N seconds (pop-up which
would be blocked by most pop-up blockers anyway).

HTH,
Laurent



On Feb 20, 11:41 am, "Aidy" <a...@noemail.xxxa.comwrote:
I assume you have apagethat refreshes itself in your popup. Instead
load
into the popup apagethat is a FRAMESET with one FRAME that is your
stockpage. The framesetpagewill then have a javascript timer that
refreshes
the content of the frame every 10 seconds.

"Ben" <wubin...@yahoo.comwrote in message

news:11*********************@m58g2000cwm.google groups.com...

Hi,
In the first startpage, I use JavaScript window.open to open a new
ASP IE
window that is used to display real-time stock price and refresh
each
10 seconds.
The problem is when ASP server restart, the real-timepagewill
display "... cannot display the webpage" and cannot back to normal
pageautomatically.
Is there any solution to let it recovers automatcally after ASP
server
down temporarily?
Thanks,
Ben- Hide quoted text -
- Show quoted text -

--
Laurent Bugnion [MVP ASP.NET]
Software engineering, Blog:http://www.galasoft-LB.ch
PhotoAlbum:http://www.galasoft-LB.ch/pictures
Support children in Calcutta:http://www.calcutta-espoir.ch- Hide quoted
text -

- Show quoted text -



Feb 21 '07 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Creat ASP Page Automatic | last post by:
Hi; I want to ask you something very important for me .. how can i Create daynamic pages or static pages Automatic .??????????!!! i have a problem with my website i want Create page asp...
5
by: Prem K Mehrotra | last post by:
I come from Oracle background. In Oracle, when one wants to do a point in time recovery, one can specify recover database until timestmap. Oracle's database maps to a db2 subsystem, i.e., in...
1
by: Mark | last post by:
Here is a description of automatic client reroute in DB2 V8.2 "The automatic client reroute feature allows client applications to recover from a loss of communication with the server so that they...
3
by: apple | last post by:
UDB v8 fp 6a on AIX 5.1.0.0 Below is a manual incremental recover from compressed backup datasets. With external compress backup datasets, can it be coded to do an automatic incremental recover?...
5
by: Grant | last post by:
Hi Is there a way to recover deleted records from a table. A mass deletion has occurred and Access has been closed since it happened Louis
1
by: KavvY | last post by:
Hi, Considering the code posted below can anyone explain to me why the following behaviour occurs? On page load the testFillDataGrid() function gets called and the variable sel is...
2
by: Maellic | last post by:
Hi, I'm currently updating a website written with ASP.NET. The original programmer is overseas, there is no documentation, and files are all over the place. Here is a code snippet from one of...
1
by: wubin_98 | last post by:
Hi, In the first start page, I use JavaScript window.open to open a new IE window that is used to display real-time stock price and refresh each 10 seconds. The problem is when ASP server...
58
by: Jorge Peixoto de Morais Neto | last post by:
I was reading the code of FFmpeg and it seems that they use malloc just too much. The problems and dangers of malloc are widely known. Malloc also has some overhead (although I don't know what is...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
1
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.