<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
</head>
<body>
<table width="60%" border="1" align="center">
<tr align="center">
<td><a href="1.asp?lx=1">新闻</a></td>
<td><a href="1.asp?lx=2">音乐</a></td>
<td><a href="1.asp?lx=3">电影</a></td>
</tr>
</table>
<%
lx=request.querystring("lx")
select case lx
case 1
%>
<table width="60%" border="1" align="center">
<tr align="center">
<td><a href="1.asp?lx1=1&lx=1">国内新闻</a></td>
<td><a href="1.asp?lx1=2&lx=1">国外新闻</a></td>
<td><a href="1.asp?lx1=3&lx=1">体育新闻</a></td>
</tr>
</table>
<%
end select
%>
<%
lx1=request.querystring("lx1")
if lx1=1 and lx=1 then
%>
<form name="form1" method="post" action="">
<table width="60%" border="1" align="center">
<tr>
<td width="25%">标题</td>
<td width="75%"><input type="text" name="textfield"></td>
</tr>
<tr>
<td>内容</td>
<td><input type="text" name="textfield2"></td>
</tr>
<tr>
<td colspan="2" align="center"><input type="submit" name="Submit" value="提交">
<input type="reset" name="Submit2" value="取消"></td>
</tr>
</table>
</form>
<%
end if
%>
</body>
</html>
运行上面的代码.由于时间的问题我只做了"新闻"一项
当你点击"确定"按钮后.
后台执行添加程序
添加完毕后我想实现
response.write"<script language=javascript>alert('您已经添加成功!');window.location='1.asp'</script>"
现在的问题是当弹出对话框后,如何跳到我要添加的那里.而不用逐步的点.
谢谢了.
急用.
如有叙述不当的地方请大家海涵.(运行代码看效果可能会更清楚些)