response.redirect not supported ?

P

Peter D

I wanted to add this method to my .asp page in order to dynamically choose a
page based upon some selection criteria. It's in my .asp book and in the
online reference. Yet when I use this object, the following error returns
in the browser:

Error Type:
Microsoft VBScript runtime (0x800A01B6)
Object doesn't support this property or method: 'Response.Redirect'
/testwebs/choose.asp, line 22

What is missing from my IIS libraries in order to use have this method
supported?

Thanks for any info

/peter d.
 
S

Stefan B Rusynko

The code should be
Response.Redirect "/testwebs/choose.asp"




|I wanted to add this method to my .asp page in order to dynamically choose a
| page based upon some selection criteria. It's in my .asp book and in the
| online reference. Yet when I use this object, the following error returns
| in the browser:
|
| Error Type:
| Microsoft VBScript runtime (0x800A01B6)
| Object doesn't support this property or method: 'Response.Redirect'
| /testwebs/choose.asp, line 22
|
| What is missing from my IIS libraries in order to use have this method
| supported?
|
| Thanks for any info
|
| /peter d.
|
 
P

Peter D

It doesn't matter what I put in the "quotes", the browser comes back and says
that the method 'redirect' is not supported in the object 'response'.

Page:
POST 16 bytes to /testwebs/choose.asp

/peter
 
S

Stefan B Rusynko

Then to object being referred to by the error is not the Response.Redirect but is an object you are using that statement within



| It doesn't matter what I put in the "quotes", the browser comes back and says
| that the method 'redirect' is not supported in the object 'response'.
|
| Page:
| POST 16 bytes to /testwebs/choose.asp
|
| /peter
|
| "Stefan B Rusynko" wrote:
|
| > The code should be
| > Response.Redirect "/testwebs/choose.asp"
| >
| > --
| >
| > _____________________________________________
| > SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
| > "Warning - Using the F1 Key will not break anything!" (-;
| > To find the best Newsgroup for FrontPage support see:
| > http://www.net-sites.com/sitebuilder/newsgroups.asp
| > _____________________________________________
| >
| >
| > |I wanted to add this method to my .asp page in order to dynamically choose a
| > | page based upon some selection criteria. It's in my .asp book and in the
| > | online reference. Yet when I use this object, the following error returns
| > | in the browser:
| > |
| > | Error Type:
| > | Microsoft VBScript runtime (0x800A01B6)
| > | Object doesn't support this property or method: 'Response.Redirect'
| > | /testwebs/choose.asp, line 22
| > |
| > | What is missing from my IIS libraries in order to use have this method
| > | supported?
| > |
| > | Thanks for any info
| > |
| > | /peter d.
| > |
| >
| >
| >
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top