Am needing to make use of Response.Redirect in my FP 2002
>application. All other (Response.xxxxxxx) codes seem to
>work, but not Redirect. Always get an http 500 error on
execution of the code. Any thoughts??? Thank You
>.
>

Re: Response.redirect by David

David
Sun Nov 02 16:13:00 CST 2003

What code are you using? If should look like this:

Response.Redirect http://xyz.com/page.asp/

--
David Berry - MCP
Microsoft MVP - FrontPage
FrontPage Support: http://www.net-sites.com/sitebuilder/
-----------------------------------
To assist you in getting the best answers for FrontPage support see:
http://www.net-sites.com/sitebuilder/newsgroups.asp
-----------------------------------
"mjm" <anonymous@discussions.microsoft.com> wrote in message
news:022701c3a18b$80f17620$a501280a@phx.gbl...
> Am needing to make use of Response.Redirect in my FP 2002
> >application. All other (Response.xxxxxxx) codes seem to
> >work, but not Redirect. Always get an http 500 error on
> execution of the code. Any thoughts??? Thank You
> >.
> >



Re: Response.redirect by anonymous

anonymous
Sun Nov 02 17:43:49 CST 2003

I have tried an assortment of code formats including the
one you gave me. Whenever I use the Response.Redirect ,
it just abends with the error. Even if I embed it in an
If/Then statement where it is not likely to get executed,
it abends.
>-----Original Message-----
>What code are you using? If should look like this:
>
>Response.Redirect http://xyz.com/page.asp/
>
>--
>David Berry - MCP
>Microsoft MVP - FrontPage
>FrontPage Support: http://www.net-sites.com/sitebuilder/
>-----------------------------------
>To assist you in getting the best answers for FrontPage
support see:
> http://www.net-sites.com/sitebuilder/newsgroups.asp
>-----------------------------------
>"mjm" <anonymous@discussions.microsoft.com> wrote in
message
>news:022701c3a18b$80f17620$a501280a@phx.gbl...
>> Am needing to make use of Response.Redirect in my FP
2002
>> >application. All other (Response.xxxxxxx) codes seem
to
>> >work, but not Redirect. Always get an http 500 error
on
>> execution of the code. Any thoughts??? Thank You
>> >.
>> >
>
>
>.
>

Re: Response.redirect by anonymous

anonymous
Sun Nov 02 17:54:25 CST 2003

Is there some formatting missing such as parens or commas
or quotes that need to be in place???? I just went back
and used exactly what you gave me, exactly, and it still
abends.
>-----Original Message-----
>I have tried an assortment of code formats including the
>one you gave me. Whenever I use the Response.Redirect ,
>it just abends with the error. Even if I embed it in an
>If/Then statement where it is not likely to get
executed,
>it abends.
>>-----Original Message-----
>>What code are you using? If should look like this:
>>
>>Response.Redirect http://xyz.com/page.asp/
>>
>>--
>>David Berry - MCP
>>Microsoft MVP - FrontPage
>>FrontPage Support: http://www.net-sites.com/sitebuilder/
>>-----------------------------------
>>To assist you in getting the best answers for FrontPage
>support see:
>> http://www.net-sites.com/sitebuilder/newsgroups.asp
>>-----------------------------------
>>"mjm" <anonymous@discussions.microsoft.com> wrote in
>message
>>news:022701c3a18b$80f17620$a501280a@phx.gbl...
>>> Am needing to make use of Response.Redirect in my FP
>2002
>>> >application. All other (Response.xxxxxxx) codes
seem
>to
>>> >work, but not Redirect. Always get an http 500
error
>on
>>> execution of the code. Any thoughts??? Thank You
>>> >.
>>> >
>>
>>
>>.
>>
>.
>

Re: Response.redirect by jon

jon
Sun Nov 02 19:03:04 CST 2003

Hi,
you need quotes around the page, eg
<%
response.redirect "page.asp"
%>
or
<%
strPage = "page.asp"
response.redirect strPage

Jon

<anonymous@discussions.microsoft.com> wrote in message
news:092c01c3a19c$a4fdc350$a001280a@phx.gbl...
> Is there some formatting missing such as parens or commas
> or quotes that need to be in place???? I just went back
> and used exactly what you gave me, exactly, and it still
> abends.
> >-----Original Message-----
> >I have tried an assortment of code formats including the
> >one you gave me. Whenever I use the Response.Redirect ,
> >it just abends with the error. Even if I embed it in an
> >If/Then statement where it is not likely to get
> executed,
> >it abends.
> >>-----Original Message-----
> >>What code are you using? If should look like this:
> >>
> >>Response.Redirect http://xyz.com/page.asp/
> >>
> >>--
> >>David Berry - MCP
> >>Microsoft MVP - FrontPage
> >>FrontPage Support: http://www.net-sites.com/sitebuilder/
> >>-----------------------------------
> >>To assist you in getting the best answers for FrontPage
> >support see:
> >> http://www.net-sites.com/sitebuilder/newsgroups.asp
> >>-----------------------------------
> >>"mjm" <anonymous@discussions.microsoft.com> wrote in
> >message
> >>news:022701c3a18b$80f17620$a501280a@phx.gbl...
> >>> Am needing to make use of Response.Redirect in my FP
> >2002
> >>> >application. All other (Response.xxxxxxx) codes
> seem
> >to
> >>> >work, but not Redirect. Always get an http 500
> error
> >on
> >>> execution of the code. Any thoughts??? Thank You
> >>> >.
> >>> >
> >>
> >>
> >>.
> >>
> >.
> >



Re: Response.redirect by mjm

mjm
Sun Nov 02 19:09:50 CST 2003

I will give that a try....thank you all so much.
>-----Original Message-----
>Hi,
>you need quotes around the page, eg
><%
>response.redirect "page.asp"
>%>
>or
><%
>strPage = "page.asp"
>response.redirect strPage
>
>Jon
>
><anonymous@discussions.microsoft.com> wrote in message
>news:092c01c3a19c$a4fdc350$a001280a@phx.gbl...
>> Is there some formatting missing such as parens or
commas
>> or quotes that need to be in place???? I just went
back
>> and used exactly what you gave me, exactly, and it
still
>> abends.
>> >-----Original Message-----
>> >I have tried an assortment of code formats including
the
>> >one you gave me. Whenever I use the
Response.Redirect ,
>> >it just abends with the error. Even if I embed it in
an
>> >If/Then statement where it is not likely to get
>> executed,
>> >it abends.
>> >>-----Original Message-----
>> >>What code are you using? If should look like this:
>> >>
>> >>Response.Redirect http://xyz.com/page.asp/
>> >>
>> >>--
>> >>David Berry - MCP
>> >>Microsoft MVP - FrontPage
>> >>FrontPage Support: http://www.net-
sites.com/sitebuilder/
>> >>-----------------------------------
>> >>To assist you in getting the best answers for
FrontPage
>> >support see:
>> >> http://www.net-sites.com/sitebuilder/newsgroups.asp
>> >>-----------------------------------
>> >>"mjm" <anonymous@discussions.microsoft.com> wrote in
>> >message
>> >>news:022701c3a18b$80f17620$a501280a@phx.gbl...
>> >>> Am needing to make use of Response.Redirect in my
FP
>> >2002
>> >>> >application. All other (Response.xxxxxxx) codes
>> seem
>> >to
>> >>> >work, but not Redirect. Always get an http 500
>> error
>> >on
>> >>> execution of the code. Any thoughts??? Thank You
>> >>> >.
>> >>> >
>> >>
>> >>
>> >>.
>> >>
>> >.
>> >
>
>
>.
>

Re: Response.redirect by clintonG

clintonG
Sun Nov 02 19:21:00 CST 2003

Go to DevGuru and take advantage of their excellent Resource Guides.
SEE: http://www.devguru.com/

--
<%= Clinton Gallagher
A/E/C Consulting, Web Design, e-Commerce Software Development
Wauwatosa, Milwaukee County, Wisconsin USA
NET csgallagher@REMOVETHISTEXTmetromilwaukee.com
URL http://www.metromilwaukee.com/clintongallagher/



"mjm" <anonymous@discussions.microsoft.com> wrote in message
news:057801c3a1a7$2e4f5fb0$a301280a@phx.gbl...
> I will give that a try....thank you all so much.
> >-----Original Message-----
> >Hi,
> >you need quotes around the page, eg
> ><%
> >response.redirect "page.asp"
> >%>
> >or
> ><%
> >strPage = "page.asp"
> >response.redirect strPage
> >
> >Jon
> >
> ><anonymous@discussions.microsoft.com> wrote in message
> >news:092c01c3a19c$a4fdc350$a001280a@phx.gbl...
> >> Is there some formatting missing such as parens or
> commas
> >> or quotes that need to be in place???? I just went
> back
> >> and used exactly what you gave me, exactly, and it
> still
> >> abends.
> >> >-----Original Message-----
> >> >I have tried an assortment of code formats including
> the
> >> >one you gave me. Whenever I use the
> Response.Redirect ,
> >> >it just abends with the error. Even if I embed it in
> an
> >> >If/Then statement where it is not likely to get
> >> executed,
> >> >it abends.
> >> >>-----Original Message-----
> >> >>What code are you using? If should look like this:
> >> >>
> >> >>Response.Redirect http://xyz.com/page.asp/
> >> >>
> >> >>--
> >> >>David Berry - MCP
> >> >>Microsoft MVP - FrontPage
> >> >>FrontPage Support: http://www.net-
> sites.com/sitebuilder/
> >> >>-----------------------------------
> >> >>To assist you in getting the best answers for
> FrontPage
> >> >support see:
> >> >> http://www.net-sites.com/sitebuilder/newsgroups.asp
> >> >>-----------------------------------
> >> >>"mjm" <anonymous@discussions.microsoft.com> wrote in
> >> >message
> >> >>news:022701c3a18b$80f17620$a501280a@phx.gbl...
> >> >>> Am needing to make use of Response.Redirect in my
> FP
> >> >2002
> >> >>> >application. All other (Response.xxxxxxx) codes
> >> seem
> >> >to
> >> >>> >work, but not Redirect. Always get an http 500
> >> error
> >> >on
> >> >>> execution of the code. Any thoughts??? Thank You
> >> >>> >.
> >> >>> >
> >> >>
> >> >>
> >> >>.
> >> >>
> >> >.
> >> >
> >
> >
> >.
> >



Re: Response.redirect by mjm

mjm
Sun Nov 02 20:07:27 CST 2003

Very interesting....I like that site. Am going to try
the clear command...may very well be the issue here.
Thank You.
>-----Original Message-----
>Go to DevGuru and take advantage of their excellent
Resource Guides.
>SEE: http://www.devguru.com/
>
>--
><%= Clinton Gallagher
> A/E/C Consulting, Web Design, e-Commerce
Software Development
> Wauwatosa, Milwaukee County, Wisconsin USA
> NET csgallagher@REMOVETHISTEXTmetromilwaukee.com
> URL
http://www.metromilwaukee.com/clintongallagher/
>
>
>
>"mjm" <anonymous@discussions.microsoft.com> wrote in
message
>news:057801c3a1a7$2e4f5fb0$a301280a@phx.gbl...
>> I will give that a try....thank you all so much.
>> >-----Original Message-----
>> >Hi,
>> >you need quotes around the page, eg
>> ><%
>> >response.redirect "page.asp"
>> >%>
>> >or
>> ><%
>> >strPage = "page.asp"
>> >response.redirect strPage
>> >
>> >Jon
>> >
>> ><anonymous@discussions.microsoft.com> wrote in message
>> >news:092c01c3a19c$a4fdc350$a001280a@phx.gbl...
>> >> Is there some formatting missing such as parens or
>> commas
>> >> or quotes that need to be in place???? I just went
>> back
>> >> and used exactly what you gave me, exactly, and it
>> still
>> >> abends.
>> >> >-----Original Message-----
>> >> >I have tried an assortment of code formats
including
>> the
>> >> >one you gave me. Whenever I use the
>> Response.Redirect ,
>> >> >it just abends with the error. Even if I embed it
in
>> an
>> >> >If/Then statement where it is not likely to get
>> >> executed,
>> >> >it abends.
>> >> >>-----Original Message-----
>> >> >>What code are you using? If should look like
this:
>> >> >>
>> >> >>Response.Redirect http://xyz.com/page.asp/
>> >> >>
>> >> >>--
>> >> >>David Berry - MCP
>> >> >>Microsoft MVP - FrontPage
>> >> >>FrontPage Support: http://www.net-
>> sites.com/sitebuilder/
>> >> >>-----------------------------------
>> >> >>To assist you in getting the best answers for
>> FrontPage
>> >> >support see:
>> >> >> http://www.net-
sites.com/sitebuilder/newsgroups.asp
>> >> >>-----------------------------------
>> >> >>"mjm" <anonymous@discussions.microsoft.com> wrote
in
>> >> >message
>> >> >>news:022701c3a18b$80f17620$a501280a@phx.gbl...
>> >> >>> Am needing to make use of Response.Redirect in
my
>> FP
>> >> >2002
>> >> >>> >application. All other (Response.xxxxxxx)
codes
>> >> seem
>> >> >to
>> >> >>> >work, but not Redirect. Always get an http 500
>> >> error
>> >> >on
>> >> >>> execution of the code. Any thoughts??? Thank
You
>> >> >>> >.
>> >> >>> >
>> >> >>
>> >> >>
>> >> >>.
>> >> >>
>> >> >.
>> >> >
>> >
>> >
>> >.
>> >
>
>
>.
>

Re: Response.redirect by mjm

mjm
Sun Nov 02 20:20:17 CST 2003

Well...as good as the code and procedure looked from
devguru.....just created a different error message.
>-----Original Message-----
>Very interesting....I like that site. Am going to try
>the clear command...may very well be the issue here.
>Thank You.
>>-----Original Message-----
>>Go to DevGuru and take advantage of their excellent
>Resource Guides.
>>SEE: http://www.devguru.com/
>>
>>--
>><%= Clinton Gallagher
>> A/E/C Consulting, Web Design, e-Commerce
>Software Development
>> Wauwatosa, Milwaukee County, Wisconsin USA
>> NET
csgallagher@REMOVETHISTEXTmetromilwaukee.com
>> URL
>http://www.metromilwaukee.com/clintongallagher/
>>
>>
>>
>>"mjm" <anonymous@discussions.microsoft.com> wrote in
>message
>>news:057801c3a1a7$2e4f5fb0$a301280a@phx.gbl...
>>> I will give that a try....thank you all so much.
>>> >-----Original Message-----
>>> >Hi,
>>> >you need quotes around the page, eg
>>> ><%
>>> >response.redirect "page.asp"
>>> >%>
>>> >or
>>> ><%
>>> >strPage = "page.asp"
>>> >response.redirect strPage
>>> >
>>> >Jon
>>> >
>>> ><anonymous@discussions.microsoft.com> wrote in
message
>>> >news:092c01c3a19c$a4fdc350$a001280a@phx.gbl...
>>> >> Is there some formatting missing such as parens or
>>> commas
>>> >> or quotes that need to be in place???? I just went
>>> back
>>> >> and used exactly what you gave me, exactly, and it
>>> still
>>> >> abends.
>>> >> >-----Original Message-----
>>> >> >I have tried an assortment of code formats
>including
>>> the
>>> >> >one you gave me. Whenever I use the
>>> Response.Redirect ,
>>> >> >it just abends with the error. Even if I embed
it
>in
>>> an
>>> >> >If/Then statement where it is not likely to get
>>> >> executed,
>>> >> >it abends.
>>> >> >>-----Original Message-----
>>> >> >>What code are you using? If should look like
>this:
>>> >> >>
>>> >> >>Response.Redirect http://xyz.com/page.asp/
>>> >> >>
>>> >> >>--
>>> >> >>David Berry - MCP
>>> >> >>Microsoft MVP - FrontPage
>>> >> >>FrontPage Support: http://www.net-
>>> sites.com/sitebuilder/
>>> >> >>-----------------------------------
>>> >> >>To assist you in getting the best answers for
>>> FrontPage
>>> >> >support see:
>>> >> >> http://www.net-
>sites.com/sitebuilder/newsgroups.asp
>>> >> >>-----------------------------------
>>> >> >>"mjm" <anonymous@discussions.microsoft.com>
wrote
>in
>>> >> >message
>>> >> >>news:022701c3a18b$80f17620$a501280a@phx.gbl...
>>> >> >>> Am needing to make use of Response.Redirect in
>my
>>> FP
>>> >> >2002
>>> >> >>> >application. All other (Response.xxxxxxx)
>codes
>>> >> seem
>>> >> >to
>>> >> >>> >work, but not Redirect. Always get an http
500
>>> >> error
>>> >> >on
>>> >> >>> execution of the code. Any thoughts??? Thank
>You
>>> >> >>> >.
>>> >> >>> >
>>> >> >>
>>> >> >>
>>> >> >>.
>>> >> >>
>>> >> >.
>>> >> >
>>> >
>>> >
>>> >.
>>> >
>>
>>
>>.
>>
>.
>

Re: Response.redirect by John

John
Mon Nov 03 11:31:05 CST 2003

Does your error contain any detail?
90% of the time

<html>
<head></head>
<body>
stuff.....

<%Response.Redirect...%>

the above won't work

corrected

<%Response.Redirect...%>
<html>
<head></head>
<body>
stuff.....


You can wrap the whole <html></html> tag in a conditional statement if you
need to just don't send anything to the client previous to calling
<%response.redirect%>


"mjm" <anonymous@discussions.microsoft.com> wrote in message
news:047601c3a1b1$059d15d0$a501280a@phx.gbl...
> Well...as good as the code and procedure looked from
> devguru.....just created a different error message.
> >-----Original Message-----
> >Very interesting....I like that site. Am going to try
> >the clear command...may very well be the issue here.
> >Thank You.
> >>-----Original Message-----
> >>Go to DevGuru and take advantage of their excellent
> >Resource Guides.
> >>SEE: http://www.devguru.com/
> >>
> >>--
> >><%= Clinton Gallagher
> >> A/E/C Consulting, Web Design, e-Commerce
> >Software Development
> >> Wauwatosa, Milwaukee County, Wisconsin USA
> >> NET
> csgallagher@REMOVETHISTEXTmetromilwaukee.com
> >> URL
> >http://www.metromilwaukee.com/clintongallagher/
> >>
> >>
> >>
> >>"mjm" <anonymous@discussions.microsoft.com> wrote in
> >message
> >>news:057801c3a1a7$2e4f5fb0$a301280a@phx.gbl...
> >>> I will give that a try....thank you all so much.
> >>> >-----Original Message-----
> >>> >Hi,
> >>> >you need quotes around the page, eg
> >>> ><%
> >>> >response.redirect "page.asp"
> >>> >%>
> >>> >or
> >>> ><%
> >>> >strPage = "page.asp"
> >>> >response.redirect strPage
> >>> >
> >>> >Jon
> >>> >
> >>> ><anonymous@discussions.microsoft.com> wrote in
> message
> >>> >news:092c01c3a19c$a4fdc350$a001280a@phx.gbl...
> >>> >> Is there some formatting missing such as parens or
> >>> commas
> >>> >> or quotes that need to be in place???? I just went
> >>> back
> >>> >> and used exactly what you gave me, exactly, and it
> >>> still
> >>> >> abends.
> >>> >> >-----Original Message-----
> >>> >> >I have tried an assortment of code formats
> >including
> >>> the
> >>> >> >one you gave me. Whenever I use the
> >>> Response.Redirect ,
> >>> >> >it just abends with the error. Even if I embed
> it
> >in
> >>> an
> >>> >> >If/Then statement where it is not likely to get
> >>> >> executed,
> >>> >> >it abends.
> >>> >> >>-----Original Message-----
> >>> >> >>What code are you using? If should look like
> >this:
> >>> >> >>
> >>> >> >>Response.Redirect http://xyz.com/page.asp/
> >>> >> >>
> >>> >> >>--
> >>> >> >>David Berry - MCP
> >>> >> >>Microsoft MVP - FrontPage
> >>> >> >>FrontPage Support: http://www.net-
> >>> sites.com/sitebuilder/
> >>> >> >>-----------------------------------
> >>> >> >>To assist you in getting the best answers for
> >>> FrontPage
> >>> >> >support see:
> >>> >> >> http://www.net-
> >sites.com/sitebuilder/newsgroups.asp
> >>> >> >>-----------------------------------
> >>> >> >>"mjm" <anonymous@discussions.microsoft.com>
> wrote
> >in
> >>> >> >message
> >>> >> >>news:022701c3a18b$80f17620$a501280a@phx.gbl...
> >>> >> >>> Am needing to make use of Response.Redirect in
> >my
> >>> FP
> >>> >> >2002
> >>> >> >>> >application. All other (Response.xxxxxxx)
> >codes
> >>> >> seem
> >>> >> >to
> >>> >> >>> >work, but not Redirect. Always get an http
> 500
> >>> >> error
> >>> >> >on
> >>> >> >>> execution of the code. Any thoughts??? Thank
> >You
> >>> >> >>> >.
> >>> >> >>> >
> >>> >> >>
> >>> >> >>
> >>> >> >>.
> >>> >> >>
> >>> >> >.
> >>> >> >
> >>> >
> >>> >
> >>> >.
> >>> >
> >>
> >>
> >>.
> >>
> >.
> >



Re: Response.redirect by clintonG

clintonG
Mon Nov 03 12:20:51 CST 2003

Pay attention to what is stated in the 'Summary' of this Microsoft
article "HOW TO: Use Response Redirect in a Server Script"
http://support.microsoft.com/default.aspx?scid=http://support.microsoft.com:80/support/kb/articles/Q159/4/02.asp&NoWebContent=1

Review the many articles written about using the ASP Response object
Google "response.redirect"

--
<%= Clinton Gallagher
A/E/C Consulting, Web Design, e-Commerce Software Development
Wauwatosa, Milwaukee County, Wisconsin USA
NET csgallagher@REMOVETHISTEXTmetromilwaukee.com
URL http://www.metromilwaukee.com/clintongallagher/







"mjm" <anonymous@discussions.microsoft.com> wrote in message
news:047601c3a1b1$059d15d0$a501280a@phx.gbl...
> Well...as good as the code and procedure looked from
> devguru.....just created a different error message.
> >-----Original Message-----
> >Very interesting....I like that site. Am going to try
> >the clear command...may very well be the issue here.
> >Thank You.
> >>-----Original Message-----
> >>Go to DevGuru and take advantage of their excellent
> >Resource Guides.
> >>SEE: http://www.devguru.com/
> >>
> >>--
> >><%= Clinton Gallagher
> >> A/E/C Consulting, Web Design, e-Commerce
> >Software Development
> >> Wauwatosa, Milwaukee County, Wisconsin USA
> >> NET
> csgallagher@REMOVETHISTEXTmetromilwaukee.com
> >> URL
> >http://www.metromilwaukee.com/clintongallagher/
> >>
> >>
> >>
> >>"mjm" <anonymous@discussions.microsoft.com> wrote in
> >message
> >>news:057801c3a1a7$2e4f5fb0$a301280a@phx.gbl...
> >>> I will give that a try....thank you all so much.
> >>> >-----Original Message-----
> >>> >Hi,
> >>> >you need quotes around the page, eg
> >>> ><%
> >>> >response.redirect "page.asp"
> >>> >%>
> >>> >or
> >>> ><%
> >>> >strPage = "page.asp"
> >>> >response.redirect strPage
> >>> >
> >>> >Jon
> >>> >
> >>> ><anonymous@discussions.microsoft.com> wrote in
> message
> >>> >news:092c01c3a19c$a4fdc350$a001280a@phx.gbl...
> >>> >> Is there some formatting missing such as parens or
> >>> commas
> >>> >> or quotes that need to be in place???? I just went
> >>> back
> >>> >> and used exactly what you gave me, exactly, and it
> >>> still
> >>> >> abends.
> >>> >> >-----Original Message-----
> >>> >> >I have tried an assortment of code formats
> >including
> >>> the
> >>> >> >one you gave me. Whenever I use the
> >>> Response.Redirect ,
> >>> >> >it just abends with the error. Even if I embed
> it
> >in
> >>> an
> >>> >> >If/Then statement where it is not likely to get
> >>> >> executed,
> >>> >> >it abends.
> >>> >> >>-----Original Message-----
> >>> >> >>What code are you using? If should look like
> >this:
> >>> >> >>
> >>> >> >>Response.Redirect http://xyz.com/page.asp/
> >>> >> >>
> >>> >> >>--
> >>> >> >>David Berry - MCP
> >>> >> >>Microsoft MVP - FrontPage
> >>> >> >>FrontPage Support: http://www.net-
> >>> sites.com/sitebuilder/
> >>> >> >>-----------------------------------
> >>> >> >>To assist you in getting the best answers for
> >>> FrontPage
> >>> >> >support see:
> >>> >> >> http://www.net-
> >sites.com/sitebuilder/newsgroups.asp
> >>> >> >>-----------------------------------
> >>> >> >>"mjm" <anonymous@discussions.microsoft.com>
> wrote
> >in
> >>> >> >message
> >>> >> >>news:022701c3a18b$80f17620$a501280a@phx.gbl...
> >>> >> >>> Am needing to make use of Response.Redirect in
> >my
> >>> FP
> >>> >> >2002
> >>> >> >>> >application. All other (Response.xxxxxxx)
> >codes
> >>> >> seem
> >>> >> >to
> >>> >> >>> >work, but not Redirect. Always get an http
> 500
> >>> >> error
> >>> >> >on
> >>> >> >>> execution of the code. Any thoughts??? Thank
> >You
> >>> >> >>> >.
> >>> >> >>> >
> >>> >> >>
> >>> >> >>
> >>> >> >>.
> >>> >> >>
> >>> >> >.
> >>> >> >
> >>> >
> >>> >
> >>> >.
> >>> >
> >>
> >>
> >>.
> >>
> >.
> >