asp表单提交的问题
first.asp代码如下:
<html>
<head>
<title>Redirect示例 </title>
</head>
<body>
<form aciton="formjump.asp" method="post">
<select name="wheretogo">
<option selected value="fun">Fun </option>
<option value="news">News </option>
<option value="sample">Sample </option>
</select>
<input type=submit name="jump" value="Jump">
</form>
</body>
</html>
formjump.asp如下:
<%response.buff=true%>
<html>
<head>
<title>Rt示例 </title>
</head>
<body>
<%
thisurl="http://192.168.245.2/te3"
where=Request.form("wheretogo")
Select Case where
case "fun"
response.redirect thisurl & "/fun/fun.asp"
case "news"
response.redirect thisurl & "/news/news.asp"
case "sample"
response.redirect thi
相关问答:
<form id="form1" runat="server">
<div>
<script type="text/javascript">
function oo(a){
document.getEleme ......
<%if request.QueryString("start") <>"" then%>
<%if cint(start)>0 then%>
<a href="search.asp?q= <%=q%>&start= <%if request.Query ......
我原本是学jsp的可找了一个ASP的公司!我要重新学习! 学习ASP! 希望大家推荐一本好书给我谢谢
<ASP3.0高级编程> 网上有电子版的
发现网上asp信息时最多的 比其他的都多好多
yun
找本有应用事例的A ......
我的網頁代碼為ASP語言,驗證方式為系統自帶的WINDOW驗證模式.
現在我如果要在ASP代碼中獲取當前的登入人 ......