显示通用名称,而不是URL
答
听起来好像这是你所期待的。
<%
'---- Written in VBScript
dim strUrl
strUrl = "http://www.example.com"
response.write "<a href='"& strUrl &"'>Go to Example.com</a>"
%>
将您的URL输出到HTML锚标记的href属性中。 –