 |
|
 |
|
Next: How to find a web designer - problems!
|
| Author |
Message |
External

Since: Mar 09, 2006 Posts: 5
|
(Msg. 1) Posted: Fri Apr 13, 2007 7:52 pm
Post subject: HELP! -- Redirection question Archived from groups: microsoft>public>inetserver>asp>db, others (more info?)
|
|
|
Hello all,
I have a page (located at mywebsite/a.asp) that redirects to another page
(theirwebsite/b.asp) located in other server. This other page probably will
redirect to another link again (othersite/c.asp) and finally display the web
page I want the user to see (finalwebsite/d.asp)
What I want to do is, once they click the link (b.asp) located in the a.asp
webpage, to load a "please wait" type of page, like Expedia does while
looking for information; and that "please wait" page should appear until the
redirection process gets to the final page (d.asp)
Since all the pages (after a.asp) are located outside our server (and we
can't access the code in those pages), how can I do that?!? Please be as
detailed as possible or point me where I can find info about how to do this.
Currently we're using ASP 3.0 running on a Win2003 SP1 server machine
Thanks in advance,
SB-R >> Stay informed about: HELP! -- Redirection question |
|
| Back to top |
|
 |  |
External

Since: Apr 14, 2007 Posts: 1
|
(Msg. 2) Posted: Sat Apr 14, 2007 3:23 am
Post subject: Re: HELP! -- Redirection question [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
you should take a look at asynchronous javascript calls ... i would
suggest you download the prototypejs.org framework and solve this with
an ajax-request...
here is a nice tutorial: http://www.prototypejs.org/learn/introduction-to-ajax
On Apr 14, 1:52 am, "segis bata" <segisb....DeleteThis@hotmail.com> wrote:
> Hello all,
>
> I have a page (located at mywebsite/a.asp) that redirects to another page
> (theirwebsite/b.asp) located in other server. This other page probably will
> redirect to another link again (othersite/c.asp) and finally display the web
> page I want the user to see (finalwebsite/d.asp)
>
> What I want to do is, once they click the link (b.asp) located in the a.asp
> webpage, to load a "please wait" type of page, like Expedia does while
> looking for information; and that "please wait" page should appear until the
> redirection process gets to the final page (d.asp)
>
> Since all the pages (after a.asp) are located outside our server (and we
> can't access the code in those pages), how can I do that?!? Please be as
> detailed as possible or point me where I can find info about how to do this.
>
> Currently we're using ASP 3.0 running on a Win2003 SP1 server machine
>
> Thanks in advance,
> SB-R >> Stay informed about: HELP! -- Redirection question |
|
| Back to top |
|
 |  |
External

Since: Mar 09, 2006 Posts: 5
|
(Msg. 3) Posted: Sat Apr 14, 2007 6:52 pm
Post subject: Re: HELP! -- Redirection question [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
Hello Michal,
Thanks for your response but I'm not familiar with AJAX and there isn't any
examples of how to do what I want to do; is there any other alternative?
(using VBScript or JavaScript) or a URL where I can see examples on how to
do this task?
Thanks in advance,
SB-R
"michal" <mgabru.RemoveThis@gmail.com> wrote in message
news:1176546227.730337.192400@o5g2000hsb.googlegroups.com...
> you should take a look at asynchronous javascript calls ... i would
> suggest you download the prototypejs.org framework and solve this with
> an ajax-request...
> here is a nice tutorial:
> http://www.prototypejs.org/learn/introduction-to-ajax
>
> On Apr 14, 1:52 am, "segis bata" <segisb....RemoveThis@hotmail.com> wrote:
>> Hello all,
>>
>> I have a page (located at mywebsite/a.asp) that redirects to another page
>> (theirwebsite/b.asp) located in other server. This other page probably
>> will
>> redirect to another link again (othersite/c.asp) and finally display the
>> web
>> page I want the user to see (finalwebsite/d.asp)
>>
>> What I want to do is, once they click the link (b.asp) located in the
>> a.asp
>> webpage, to load a "please wait" type of page, like Expedia does while
>> looking for information; and that "please wait" page should appear until
>> the
>> redirection process gets to the final page (d.asp)
>>
>> Since all the pages (after a.asp) are located outside our server (and we
>> can't access the code in those pages), how can I do that?!? Please be as
>> detailed as possible or point me where I can find info about how to do
>> this.
>>
>> Currently we're using ASP 3.0 running on a Win2003 SP1 server machine
>>
>> Thanks in advance,
>> SB-R >> Stay informed about: HELP! -- Redirection question |
|
| Back to top |
|
 |  |
External

Since: Jan 28, 2006 Posts: 170
|
(Msg. 4) Posted: Sun Apr 15, 2007 3:25 pm
Post subject: Re: HELP! -- Redirection question [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
"segis bata" <segisbata.RemoveThis@hotmail.com> wrote in message
news:O7BepaifHHA.1388@TK2MSFTNGP05.phx.gbl...
> Hello all,
>
> I have a page (located at mywebsite/a.asp) that redirects to another page
> (theirwebsite/b.asp) located in other server. This other page probably
will
> redirect to another link again (othersite/c.asp) and finally display the
web
> page I want the user to see (finalwebsite/d.asp)
>
> What I want to do is, once they click the link (b.asp) located in the
a.asp
> webpage, to load a "please wait" type of page, like Expedia does while
> looking for information; and that "please wait" page should appear until
the
> redirection process gets to the final page (d.asp)
>
> Since all the pages (after a.asp) are located outside our server (and we
> can't access the code in those pages), how can I do that?!? Please be as
> detailed as possible or point me where I can find info about how to do
this.
>
> Currently we're using ASP 3.0 running on a Win2003 SP1 server machine
>
> Thanks in advance,
> SB-R
>
>
'mywebsite/externallink.asp
<html>
<head>
<meta http-equiv="refresh"
content="1;<%=Server.HTMLEncode(Request.QueryString("url"))%>" />
</head>
<body>
Please wait while you are redirected ....
</body>
</html>
Change links to external sites from
http://theirwebsite/b.asp
to
/externallink.asp?url=<%Server.URLEncode("http://theirwebsite/b.asp")%> >> Stay informed about: HELP! -- Redirection question |
|
| Back to top |
|
 |  |
External

Since: Apr 17, 2007 Posts: 1
|
(Msg. 5) Posted: Tue Apr 17, 2007 12:10 am
Post subject: Re: HELP! -- Redirection question [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
yeah redirect is also possible but you have no chance to show the
loading progress ...
ajax is not difficult .. if you are familiar with javascript its not
a big deal ...
check this http://www.prototypejs.org/api/ajax/request
thats exactly what you need...
On Apr 15, 4:25 pm, "Anthony Jones" <A....DeleteThis@yadayadayada.com> wrote:
> "segis bata" <segisb....DeleteThis@hotmail.com> wrote in message
>
> news:O7BepaifHHA.1388@TK2MSFTNGP05.phx.gbl...
>
>
>
>
>
> > Hello all,
>
> > I have a page (located at mywebsite/a.asp) that redirects to another page
> > (theirwebsite/b.asp) located in other server. This other page probably
> will
> > redirect to another link again (othersite/c.asp) and finally display the
> web
> > page I want the user to see (finalwebsite/d.asp)
>
> > What I want to do is, once they click the link (b.asp) located in the
> a.asp
> > webpage, to load a "please wait" type of page, like Expedia does while
> > looking for information; and that "please wait" page should appear until
> the
> > redirection process gets to the final page (d.asp)
>
> > Since all the pages (after a.asp) are located outside our server (and we
> > can't access the code in those pages), how can I do that?!? Please be as
> > detailed as possible or point me where I can find info about how to do
> this.
>
> > Currently we're using ASP 3.0 running on a Win2003 SP1 server machine
>
> > Thanks in advance,
> > SB-R
>
> 'mywebsite/externallink.asp
> <html>
> <head>
> <meta http-equiv="refresh"
> content="1;<%=Server.HTMLEncode(Request.QueryString("url"))%>" />
> </head>
> <body>
> Please wait while you are redirected ....
> </body>
> </html>
>
> Change links to external sites from
>
> http://theirwebsite/b.asp
>
> to
>
> /externallink.asp?url=<%Server.URLEncode("http://theirwebsite/b.asp")%>- Hide quoted text -
>
> - Show quoted text - >> Stay informed about: HELP! -- Redirection question |
|
| Back to top |
|
 |  |
|
You can post new topics in this forum You can reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|
|
|
 |
|
|