tags:

views:

106

answers:

2

I want to create an html page which contains a text box. When I am given input and the Enter key is pressed, I want it to go to another html page and display the typed keyword.

How can I do this?

+1  A: 

I think you need to use a server-side scripting language to facilitate the manipulation of the inputted data on the form, so that it gets "saved" and displayed in the other html page. I suggest you try reading about PHP, and then turn to handling information in Web Forms...just a thought!

ultrajohn
not necessarily, possible in javascript
cobbal
really, in different html pages? i didn't know that, could you provide a link please?
ultrajohn
i want only basic html to html -- it is my interview question
murali
+1  A: 

You can use Javascript for that. Check this Tutorial : How do I pass variables between two pages? (GET method)

Shoban
David