assignment2.asp =============== html> head> title> ASP Test /title> link rel="stylesheet" href="../css/main.css"> /head> body> h2>M.A.A.M. Enterprises /h2> form action="seminardetails.asp" method="post"> p>Lessons on Timewasting /p> p>Please register your details /p> p>First Name: input type="text" name="firstname" size="15" maxlength="25" /> /p> p>Last Name: input type="text" name="lastname" size="15" maxlength="25" /> /p> p>Company: input type="text" name="company" size="15" maxlength="25" /> /p> p> input type="submit" value="submit details" /> /p> p> input type="reset" value="clear details" /> /p> /form> p align="center">Close Window /body> /html> seminardetails.asp ================== html> head> title> ASP Test /title> link rel="stylesheet" href="../css/main.css"> /head> body> <% Dim strFirstname Dim strLastname Dim strCompany strFirstname = Request.Form("firstname") strLastname = Request.Form("lastname") strCompany = Request.Form("company") %> h2>M.A.A.M. Enterprises p>Lessons on Timewasting Seminar

p>Thank you for registering <%=strFirstname %><%=" " %><%=strLastname %> of <%=strCompany %>, your badge will be waiting for you at the Registration Desk

/body> /html>