Hi, can any1 tel me how do i and what exactly does an onloaded function
look like?

I want to use an on loaded function that when the page is done loading,
i want to use, respose.redirect to reload the page.

Thanx in advance for ur help.

Re: ASP On Loaded by Ray

Ray
Fri Nov 03 05:56:08 CST 2006

Do you want the user to see the page first? If so, you can't use
Response.Redirect. You'd have to use client-side script.

<script type="text/javascript">
location.href = 'page2.asp';
</script>

Ray at work

"amatuer" <njoosub@gmail.com> wrote in message
news:1162547937.406399.93970@f16g2000cwb.googlegroups.com...
> Hi, can any1 tel me how do i and what exactly does an onloaded function
> look like?
>
> I want to use an on loaded function that when the page is done loading,
> i want to use, respose.redirect to reload the page.
>
> Thanx in advance for ur help.
>



Re: ASP On Loaded by amatuer

amatuer
Mon Nov 06 00:36:55 CST 2006

Yes i would like the user to see the page first. What does the script
below do?


Ray Costanzo [MVP] wrote:
> Do you want the user to see the page first? If so, you can't use
> Response.Redirect. You'd have to use client-side script.
>
> <script type="text/javascript">
> location.href = 'page2.asp';
> </script>
>
> Ray at work
>
> "amatuer" <njoosub@gmail.com> wrote in message
> news:1162547937.406399.93970@f16g2000cwb.googlegroups.com...
> > Hi, can any1 tel me how do i and what exactly does an onloaded function
> > look like?
> >
> > I want to use an on loaded function that when the page is done loading,
> > i want to use, respose.redirect to reload the page.
> >
> > Thanx in advance for ur help.
> >


Re: ASP On Loaded by Ray

Ray
Mon Nov 06 05:53:15 CST 2006

Then you'll have to use client-side script. The script below will instruct
the browser to navigate to page2.asp.

Ray at work

"amatuer" <njoosub@gmail.com> wrote in message
news:1162795015.770026.65120@i42g2000cwa.googlegroups.com...
> Yes i would like the user to see the page first. What does the script
> below do?
>
>
> Ray Costanzo [MVP] wrote:
>> Do you want the user to see the page first? If so, you can't use
>> Response.Redirect. You'd have to use client-side script.
>>
>> <script type="text/javascript">
>> location.href = 'page2.asp';
>> </script>
>>
>> Ray at work
>>
>> "amatuer" <njoosub@gmail.com> wrote in message
>> news:1162547937.406399.93970@f16g2000cwb.googlegroups.com...
>> > Hi, can any1 tel me how do i and what exactly does an onloaded function
>> > look like?
>> >
>> > I want to use an on loaded function that when the page is done loading,
>> > i want to use, respose.redirect to reload the page.
>> >
>> > Thanx in advance for ur help.
>> >
>