Hi everyone, I've looked online but can't figure out how to get a page to print out a whatever text I write in a box on the same page below the textbox. I can't use response.write as the avascript will be expanded to manipulate the input.
If you have any idea's please let me know.
Many thanks.
If you have any idea's please let me know.
Many thanks.
Code:
<html>
<head>
<script type="text/javascript">
function show_prompt()
{
document.write(textbox);
}
</script>
</head>
<body>
<form action="">
Textbox </br> <input type="text" name="textbox" /><br />
</form>
</body>
</html>