Hi
I have submit.html file and submit.asp file.In submit.html file i have one text box and one dropdownlist and one submit button.in dropdown list i have mange,orange,chocolate,....While i am click submit query button it will display following in submit.asp file.for example welcome mohan your flavour is chocolate Rs.25.If i am selecting chocolate in dropdownlist.otherewise whatever i selected in dropdownlist that corresponding price will be display in submit.asp file
Thanks in advance
Here my code
<Form action="/bca/Submit.asp" method="post">
<p>Enter Your Name Here <input name="name" size=25>
<p>Select Flavour :<Select name="flavour">
<option>mango
<option>orange
<option>vanilla
<option>chocolate
</Select>
<p><input type="submit" value="submit query">
</Form>
below my submit.asp code
<%response.write("hello")%>
<p>welcome <%=Request.Form("name")%>
<p> Your favourite flavour is <%=Request.Form("flavour")%>