473,402 Members | 2,046 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,402 software developers and data experts.

Re-direction to another aspx page

Hi People,

Wondering whether there is a way of being transferred to another aspx page,
after waiting for a couple or more seconds, rather than being transferred
immediately. For example displaying a status message and then being
transferred after 4-5 seconds.

Will wait for valuable feedback.

Thanks,

I.A
Nov 19 '05 #1
3 1229


It's not a specific ASPX function but more a HTML related tag.
Try something like this
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=iso-8859-1">
<meta http-equiv="refresh" content="5;
URL=http://urltotransfer/next.aspx;">
<body>
<p>
<a href="http://urltotransfer/next.aspx">You will be automatically
redirected. If you are not
automatically forwarded, please click here to enter.</a></p>
</body>
</html>

Where 5 is the number of second to wait. Caution: it's not a
"Server.Transfer" equivalent so you need a request/reponse to your browser.

Lionel.

"Irfan Akram" <Ir********@discussions.microsoft.com> a écrit dans le message
de news: 61**********************************@microsoft.com...
Hi People,

Wondering whether there is a way of being transferred to another aspx
page,
after waiting for a couple or more seconds, rather than being transferred
immediately. For example displaying a status message and then being
transferred after 4-5 seconds.

Will wait for valuable feedback.

Thanks,

I.A

Nov 19 '05 #2
Hi,

I was actually looking for something which transfers meto the desired page,
after I click on the submit button, but waits for a message box to be
displayed first and then the transfer to take place. I assume this code
automatically refreshes after a certain duration. Am I right in assuming that
?

Thanks,

Irfan

"Lionel LASKE" wrote:


It's not a specific ASPX function but more a HTML related tag.
Try something like this
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=iso-8859-1">
<meta http-equiv="refresh" content="5;
URL=http://urltotransfer/next.aspx;">
<body>
<p>
<a href="http://urltotransfer/next.aspx">You will be automatically
redirected. If you are not
automatically forwarded, please click here to enter.</a></p>
</body>
</html>

Where 5 is the number of second to wait. Caution: it's not a
"Server.Transfer" equivalent so you need a request/reponse to your browser.

Lionel.

"Irfan Akram" <Ir********@discussions.microsoft.com> a écrit dans le message
de news: 61**********************************@microsoft.com...
Hi People,

Wondering whether there is a way of being transferred to another aspx
page,
after waiting for a couple or more seconds, rather than being transferred
immediately. For example displaying a status message and then being
transferred after 4-5 seconds.

Will wait for valuable feedback.

Thanks,

I.A


Nov 19 '05 #3

You're right but you can add a page with a submit button and call my page
from this button.
So I guess you'll have what you expect.

Lionel.
To have your but you just need to call my code (let's say is Transfert

"Irfan Akram" <Ir********@discussions.microsoft.com> a écrit dans le message
de news: A7**********************************@microsoft.com...
Hi,

I was actually looking for something which transfers meto the desired
page,
after I click on the submit button, but waits for a message box to be
displayed first and then the transfer to take place. I assume this code
automatically refreshes after a certain duration. Am I right in assuming
that
?

Thanks,

Irfan

"Lionel LASKE" wrote:


It's not a specific ASPX function but more a HTML related tag.
Try something like this
<html>
<head>
<meta http-equiv="content-type"
content="text/html;charset=iso-8859-1">
<meta http-equiv="refresh" content="5;
URL=http://urltotransfer/next.aspx;">
<body>
<p>
<a href="http://urltotransfer/next.aspx">You will be automatically
redirected. If you are not
automatically forwarded, please click here to enter.</a></p>
</body>
</html>

Where 5 is the number of second to wait. Caution: it's not a
"Server.Transfer" equivalent so you need a request/reponse to your
browser.

Lionel.

"Irfan Akram" <Ir********@discussions.microsoft.com> a écrit dans le
message
de news: 61**********************************@microsoft.com...
> Hi People,
>
> Wondering whether there is a way of being transferred to another aspx
> page,
> after waiting for a couple or more seconds, rather than being
> transferred
> immediately. For example displaying a status message and then being
> transferred after 4-5 seconds.
>
> Will wait for valuable feedback.
>
> Thanks,
>
> I.A


Nov 19 '05 #4

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

Similar topics

1
by: Nel | last post by:
I have a question related to the "security" issues posed by Globals ON. It is good programming technique IMO to initialise variables, even if it's just $foo = 0; $bar = ""; Surely it would...
4
by: Craig Bailey | last post by:
Anyone recommend a good script editor for Mac OS X? Just finished a 4-day PHP class in front of a Windows machine, and liked the editor we used. Don't recall the name, but it gave line numbers as...
4
by: Alan Walkington | last post by:
Folks: How can I get an /exec'ed/ process to run in the background on an XP box? I have a monitor-like process which I am starting as 'exec("something.exe");' and, of course the exec function...
1
by: John Ryan | last post by:
What PHP code would I use to check if submitted sites to my directory actually exist?? I want to use something that can return the server code to me, ie HTTP 300 OK, or whatever. Can I do this with...
10
by: James | last post by:
What is the best method for creating a Web Page that uses both PHP and HTML ? <HTML> BLA BLA BLA BLA BLA
8
by: Beowulf | last post by:
Hi Guru's, I have a query regarding using PHP to maintain a user profiles list. I want to be able to have a form where users can fill in their profile info (Name, hobbies etc) and attach an...
8
by: Lothar Scholz | last post by:
Because PHP5 does not include the mysql extension any more is there a chance that we will see more Providers offering webspace with Firebird or Postgres Databases ? What is your opinion ? I must...
1
by: joost | last post by:
Hello, I'm kind of new to mySQL but more used to Sybase/PHP What is illegal about this query or can i not use combined query's in mySQL? DELETE FROM manufacturers WHERE manufacturers_id ...
2
by: sky2070 | last post by:
i have two file with jobapp.html calling jobapp_action.php <HTML> <!-- jobapp.html --> <BODY> <H1>Phop's Bicycles Job Application</H1> <P>Are you looking for an exciting career in the world of...
1
by: Brian | last post by:
I have an array like this: $events = array( array( '2003-07-01', 'Event Title 1', '1' //ID Number (not unique) ), array( '2003-07-02',
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 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 a new...

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.