Code:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Industry Designer Questionnaire</title>
</head>
<body>
<form action="designer.asp" method="post">
Do you think universities provide students with the necessary skills needed for the
design world? <br> <input type="text" name="q1"><br><br>
What are the main skills that you find newly graduated students are missing, but very
necessary? <br> <input type="text" name="q2"><br><br>
Why is there such a high demand for at least one years experience? <br> <input type="text" name="q3"><br><br>
What skills do you find that are gained in that year? <br> <input type="text" name="q4"><br><br>
Do you think live briefs are beneficial to students? <br> <input type="text" name="q5"><br><br>
What advice would you give a person who is looking for a job in the field of graphic design? <br> <input type="text" name="q6"><br><br>
Does your company offer internships/apprenticeships for graphic design students? <br> <input type="text" name="q7"><br><br>
Your Name <input type="text" name="qname">
Your Email <input type="text" name="qemail">
<input type="submit" value="Submit">
</form>
</body>
</html>
im using this format at the moment, sorry im a little dull. that page calls the below asp file, what would ii need to change??
Code:
<%@language = "VBScript" %>
<%
myq1 = Request.form("q1")
myq2 = Request.form("q2")
myq3 = Request.form("q3")
myq4 = Request.form("q4")
myq5 = Request.form("q5")
myq6 = Request.form("q6")
myq7 = Request.form("q7")
myname = Request.form("qname")
myemail = Request.form("qemail")
MyPath=Server.MapPath("database.mdb")
Set conn = Server.CreateObject("ADODB.Connection")
conn.Open "Driver={Microsoft Access Driver (*.mdb)};" & _
"DBQ=" & MyPath
SQL = "INSERT INTO designer (question1, question2, question3, question4, question5, question6, question7, name, email) VALUES ('"&myq1&"','"&myq2&"','"&myq3&"','"&myq4&"','"&myq5&"','"&myq6&"','"&myq7&"','"&myname&"','"&myemail&"')"
conn.Execute(SQL)
%>
<html>
<head><title>Questionnaire Completed</title>
</head>
<body>
<p>THANKS FOR YOUR TIME.</p>
</body>
</html>
Bookmarks