如何得到这样的数据? ASP方面的哦。来者有分
ydfok 2004-11-23 03:01:32 有这样的页面,
news.asp?newslist=%B0%A2%B9%F3&checked=news%2Fagui%2F003.asf&checked=news%2Fagui%2F004.asf&checked=news%2Fagui%2F006.asf&checked=news%2Fagui%2F007.asf&title=%C1%AC+%B2%A5%28%B2%BB%D2%AA%B3%AC%B9%FD50%CA%D7%29
分析一下就是这样的
news.asp?
newslist=%B0%A2%B9%F3&
checked=news%2Fagui%2F003.asf&
checked=news%2Fagui%2F004.asf&
checked=news%2Fagui%2F006.asf&
checked=news%2Fagui%2F007.asf&
title=%C1%AC+%B2%A5%28%B2%BB%D2%AA%B3%AC%B9%FD50%CA%D7%29
我是这样得数据的:
<script language="JavaScript"><!--
Newes = ""
iCount = Request.QueryString("checked").Count;
For i = 1 to iCount
Newes = Newes & "," & Request.QueryString("checked")(i);
Next
TitleStr = Request.Form("title");
newslist = Request.Form("newslist");
//-->
</script>
我在下面的页面中<title><%=TitleStr%></title>得到的是空,还请大家帮忙分析一下哦。本来想放到.NET里面的问问的。那个里面好象有问题。
我还是一时好奇才做网页的,还请高手们帮帮忙哦