Hi,
This is my first time ASP coding and as ever, its not working too well.
Here is my first page which is fine:
And here is the ASP page which don't. Basically upon selecting an option, i want it to include the CSS style page which i have designed Can someone sort it out please?
Thankyou
James
This is my first time ASP coding and as ever, its not working too well.
Here is my first page which is fine:
Code:
<HTML>
<HEAD>
<TITLE></TITLE>
</HEAD>
<BODY>
<H3>Holiday Form</H3>
Please select one or more destinations that you would like brochures for:
<FORM ACTION="ResponseQueryString.asp" METHOD=GET>
<SELECT SIZE=3 NAME="HolidayLocation" MULTIPLE>
<OPTION>Madrid</OPTION>
<OPTION>Rome</OPTION>
<OPTION>Paris</OPTION>
<OPTION>Berlin</OPTION>
<OPTION>Moscow</OPTION>
<OPTION>Birmingham</OPTION>
</SELECT>
<INPUT TYPE="SUBMIT">
</FORM>
</BODY>
</HTML>
And here is the ASP page which don't. Basically upon selecting an option, i want it to include the CSS style page which i have designed Can someone sort it out please?
Code:
<%Option Explicit%>
<HTML>
<HEAD>
<style>
<%
If Request.QueryString("HolidayLocation") ="madrid" then
Response.write <!-- #Include file="Stylesmardrid.css" -->
Else
Response.write <!-- #Include file="Styles.css" -->
End if
%>
</style>
<TITLE></TITLE>
</HEAD>
<BODY>
<H3>Holiday Response Form
as requested </H3>
</BODY>
</HTML>
Thankyou
James