Hey everyone, I have a school project due, I've done it all, but there's one part that's giving me trouble.
I need to create a ticket conformation page, once the 'confirm' button is pressed, a new window should open with all the details that the customer has entered on the page. However, I cannot get it to work, and I cannot find any help, anything I do try doesn't work.
Here's the HTML that I am using:
And here's the ASP, that I am using:
I am completely stuck, I've been trying on and off for weeks and I can't figure it. Is there anyone that could help me out, and point me in the correct direction?
Thanks,
Nick
I need to create a ticket conformation page, once the 'confirm' button is pressed, a new window should open with all the details that the customer has entered on the page. However, I cannot get it to work, and I cannot find any help, anything I do try doesn't work.
Here's the HTML that I am using:
Code:
<html>
<form method="post" action="simpleform.asp">
First Name: <input type="text" name="fname" /><br />
Last Name: <input type="text" name="lname" /><br /><br />
<input type="submit" value="Submit" />
</form>
</html>
And here's the ASP, that I am using:
Code:
<body>
Welcome
<%
response.write(request.form("fname"))
response.write(" " & request.form("lname"))
%>
</body>
I am completely stuck, I've been trying on and off for weeks and I can't figure it. Is there anyone that could help me out, and point me in the correct direction?
Thanks,
Nick
Last edited: