ASP如何获取FOR循环文本框的值
下面是程序的接收页<%dimhforh=1to5%><%"ttex"&h&""=request.form("text"&h&"")%><%next%>其中的:"ttex"...
下面是程序的接收页
<%
dim h
for h=1 to 5
%>
<%"ttex"&h&""=request.form("text"&h&"")%>
<%next
%>
其中的:"ttex"&h&"" 表示被赋予的变量也自动改变,但是这个地方一直不正确 展开
<%
dim h
for h=1 to 5
%>
<%"ttex"&h&""=request.form("text"&h&"")%>
<%next
%>
其中的:"ttex"&h&"" 表示被赋予的变量也自动改变,但是这个地方一直不正确 展开
2010-12-28
展开全部
<%
dim h
for h=1 to 5
%>
<%"ttex"&h&""=request.form("text"&h&"")%>
<%next
%>
"ttex"&h&""= 这里是不对的。变量不可以这样赋值,你可以这样
<%
dim h
for h=1 to 5
%>
<%
if h=1 then
h1=request.form("text"&h&"")
end if
if h=2 then
h2=request.form("text"&h&"")
end if
if h=3 then
h3=request.form("text"&h&"")
end if
if h=4 then
h4=request.form("text"&h&"")
end if
if h=5 then
h5=request.form("text"&h&"")
end if
%>
<%next
%>
dim h
for h=1 to 5
%>
<%"ttex"&h&""=request.form("text"&h&"")%>
<%next
%>
"ttex"&h&""= 这里是不对的。变量不可以这样赋值,你可以这样
<%
dim h
for h=1 to 5
%>
<%
if h=1 then
h1=request.form("text"&h&"")
end if
if h=2 then
h2=request.form("text"&h&"")
end if
if h=3 then
h3=request.form("text"&h&"")
end if
if h=4 then
h4=request.form("text"&h&"")
end if
if h=5 then
h5=request.form("text"&h&"")
end if
%>
<%next
%>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询