| View previous topic :: View next topic   | 
	
	
	
		| Author | 
		Message | 
	
	
		hoppy -
 
  Joined: 12 Jun 2006 Posts: 22 Location: wigan
  | 
		
			
				 Posted: Fri Dec 29, 2006 1:54 am    Post subject: Method="post" | 
				      | 
			 
			
				
  | 
			 
			
				does abyssx1 not allow you to use it and is there away to add it
 
 
i keep getting error405 method not allowed 
 
 
and i have declared the asp recieving page in the asp parameters | 
			 
		  | 
	
	
		| Back to top | 
		
			            | 
		
	
	
		  | 
	
	
		AbyssUnderground -
 
  Joined: 31 Dec 2004 Posts: 3855
 
  | 
		
			
				 Posted: Fri Dec 29, 2006 2:04 am    Post subject:  | 
				      | 
			 
			
				
  | 
			 
			
				405 means you are trying to send to a static page, eg a html file or a file without a specified interpreter. Check your settings are correct if you are definately sending to an asp file. _________________ Andy (AbyssUnderground) (previously The Inquisitor)
 
www.abyssunderground.co.uk | 
			 
		  | 
	
	
		| Back to top | 
		
			           | 
		
	
	
		  | 
	
	
		hoppy -
 
  Joined: 12 Jun 2006 Posts: 22 Location: wigan
  | 
		
			
				 Posted: Fri Dec 29, 2006 2:33 am    Post subject:  | 
				      | 
			 
			
				
  | 
			 
			
				just tried it with a simple form got the same message. but with method="get" its displaying the name in the url bar were its supposed to be on the asp page. heres the codes i just used incase it helps.
 
 
form_response.html
 
<html> 
 
<head><title>form</title></head> 
 
<body> 
 
<form method="get" action="form_response.asp"> 
 
name: <input type="text" name="name" size="15"><BR> 
 
email: <input type="password" name="email" size="15"><BR> 
 
<input type="Submit" value="Submit"> 
 
</form> 
 
</body> 
 
</html>
 
 
form_response.asp
 
<html> 
 
<head><title>responce</title></head> 
 
<body> 
 
Your name is <% =Request.Form("name") %> <BR> 
 
Your email is <% =Request.Form("email") %> 
 
</body> 
 
</html> | 
			 
		  | 
	
	
		| Back to top | 
		
			            | 
		
	
	
		  | 
	
	
		hoppy -
 
  Joined: 12 Jun 2006 Posts: 22 Location: wigan
  | 
		
			
				 Posted: Fri Dec 29, 2006 2:54 am    Post subject:  | 
				      | 
			 
			
				
  | 
			 
			
				| sorry ive sorted thanks anyway | 
			 
		  | 
	
	
		| Back to top | 
		
			            | 
		
	
	
		  | 
	
	
		 |