如何在下面语句里的文字加超链接

来源:百度知道 编辑:UC知道 时间:2024/05/06 20:42:43
<% if session("user")="1" then response.write("管理全部信息") end if
if session("user")="0" then response.write("管理你的个人信息")end if
%> 分别给这俩个文字加不同的连接 怎么加

<%
if session("user")="1" then
response.write("<a href='all.asp'>管理全部信息</a>")
else
response.write("<a href='you.asp'>管理你的个人信息</a>")
end if
%>
其中的all.asp和you.asp你可以任意换