Re: How can I get the dropdown's selected value
Thank you very much.
but
I wrote this code:
<%@ Language=VBScri pt %>
<%
option explicit
dim xy
xy=Request.Quer ystring("select 1")
%>
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" Content="text/html; charset=x-sjis">
<META NAME="GENERATOR " Content="Micros oft Visual Studio 6.0">
</HEAD>
<BODY>
<FORM id=form1 name=form1 action=ASPPage6 .asp method=get>
<SELECT id=select1 name=select1>
<OPTION value=1 selected>One</OPTION>
<OPTION value=2>Two</OPTION>
</SELECT>
<P><INPUT id=submit1 type=submit value=Submit name=submit1></P>
<P><INPUT id=text1 value="<%=xy%>" name=text1></P>
</FORM>
</BODY>
</HTML>
When I click the submit button,the page is error.Error message:
"
Page not found
....
HTTP 404 - Files not found
Internet Information Services
....
"
Can you more help me
Thank you very much.
but
I wrote this code:
<%@ Language=VBScri pt %>
<%
option explicit
dim xy
xy=Request.Quer ystring("select 1")
%>
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" Content="text/html; charset=x-sjis">
<META NAME="GENERATOR " Content="Micros oft Visual Studio 6.0">
</HEAD>
<BODY>
<FORM id=form1 name=form1 action=ASPPage6 .asp method=get>
<SELECT id=select1 name=select1>
<OPTION value=1 selected>One</OPTION>
<OPTION value=2>Two</OPTION>
</SELECT>
<P><INPUT id=submit1 type=submit value=Submit name=submit1></P>
<P><INPUT id=text1 value="<%=xy%>" name=text1></P>
</FORM>
</BODY>
</HTML>
When I click the submit button,the page is error.Error message:
"
Page not found
....
HTTP 404 - Files not found
Internet Information Services
....
"
Can you more help me
Comment