描述起来很复杂
我简单说说把
在一个已经调试正常的index ASP页中
该页主要是新闻管理的
主要代码如下:
<%
ShowSmallClassType=ShowSmallClassType_Default
MaxPerPage=MaxPerPage_Default
strFileName="Default.asp?BigClassName=" & BigClassName & "&SmallClassName=" & SmallClassName & "&SpecialName=" & SpecialName
%>
<%
dim strTitle
strTitle=SiteName
if BigClassName="" and SmallClassName="" and SpecialName="" then
strTitle=strTitle & "--首页"
else
strTitle=strTitle & "--文章中心"
if SpecialName<>"" then
strTitle=strTitle & "--[专题]" & SpecialName
else
if BigClassName<>"" then
strTitle=strTitle & "--" & BigClassName
end if
if SmallClassName<>"" then
strTitle=strTitle & "--" & SmallClassName
end if
end if
end if
response.write strTitle
%>