> I have a search form.  When I chose an option in a certain 
> select box and then submit the form, I get this error:
> 
> HTTP Error 405
> 405 Method Not Allowed
> 
> The method specified in the Request Line is not allowed for 
> the resource identified by the request. Please ensure that 
> you have the proper MIME type set up for the resource you 
> are requesting.
...
> If I don't select anything in that particular list box, the 
> search works fine.
> 
> Here is the code for the select box:
> 
> <select name="contact_typeCriteria" size="1">
>        <option value="">(Choose One:)</option>
>        <option value="Staff">Staff</option>
>        <option value="Instructor">Instructor</option>
> </select>
> 
> And here is the code on the action page that I think is 
> causing the problem...

This problem shouldn't have anything to do with code in your action page.
The error indicates that what you're doing in the form is the problem, not
within the action page itself - which is never actually being executed,
since your web server is returning a 405 error.

Typically, you get an error like this when you misspell a value within the
FORM's ACTION or METHOD parameter.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to