我有一个来自结果集的变量标签 <%test_variable%>。
我想用这个 <%=test_variable%> 重定向到一个链接,比如说
http://www.helloworld.someurl.com/testUrl?somevariable=<%=test_variable%>&test=ok
如何在 <% %> 标记中执行此操作?例如,
<%=test_variable%>
<%
' I want to redirect the url with the above tag, something like:
Response.Redirect(" http://www.helloworld.someurl.com/testUrl?somevariable=<%=test_variable%>&test=ok")
%>
但我不认为我们可以有“嵌套标签”,对吧?
我对 ASP 很陌生。