I have a form with one input where you type the URL of the website, then the URL should be sent to the iframe which is on the same web page and it should iframe the URL. Heres the code I got currently when I type http://example.com into the URL input it gives me the error, cannot GET /my_frame%22?Url=http%3A%2F%2Fexample.com
<html>
<head>
<title>Form Iframe Demo</title>
</head>
<body>
<form action=my_frame" >
<input type="text" name="Url" value="http://" />
<input type="submit" />
</form>
<--Iframe should receive url from the form and then Iframe it -->
<iframe name="my_frame" src="Url" width="860px">
</iframe>
</body>
</html>
Have tried screwing around with it but it's running me up the wall
I would expect it to have an iframe of http://example.com but I get an error