Microsoft VBScript 编译器错误 错误 '800a03ee'
Microsoft VBScript 编译器错误 错误 '800a03ee'
缺少 ')'
/xml_v1.12/top.asp,行 23
if(Session("isLogin")!="true"){
---------------------^
这个if(Session("isLogin")!="true"){里面他说缺少个“)”但是好像没少啊,在DW里面还可以显示,但是include 就出现了这样的问题!怎么解决啊 !
程序代码如下:
--------------------------------------------------------------------------------------------------------------
<div align=center>
<div id="Menu1" onMouseOut="hideMenu();" style="position:absolute;z-index:2;visibility:hidden;">
<table id="submenu" cellspacing=1 cellpadding=3>
<tr>
<td align=left nowrap class="t">
<%=strMenu()%>
</td>
</tr>
</table>
</div>
<table border="0" align="center" cellspacing="1" class="b">
<tr>
<%
if(Session("isLogin")!="true")
{
%>
<td class="t" align="left">欢迎光临<b><%=name%></b></td>
<td width="60" align="center" class="t"><a href="http://17763.uwuw.net/">网站首页</a></td>
<td width="60" align="center" class="t"><a href="search.asp">搜索文章</a></td>
<td width="60" align="center" class="t"><a onMouseOver="showMenu();" href="#">风格选择</a></td>
<td width="60" align="center" class="t"><a href="login.asp">登入管理</a></td>
<%
}
%>
<%
if(Session("isLogin")=="true"){
%>
<td align="left" class="t">欢迎光临后台</td>
<td width="60" align="center" class="t"><a href="index.asp">网站首页</a></td>
<td width="60" align="center" class="t"><a onMouseOver="showMenu();" href="#">风格选择</a></td>
<td width="60" align="center" class="t"><a href="admin.asp">管理首页</a></td>
<td width="60" align="center" class="t"><a href="admin_reply.asp">评论管理</a></td>
<td width="60" align="center" class="t"><a href="fenlei.asp">分类管理</a></td>
<td width="60" align="center" class="t"><a href="setting.asp">参数设置</a></td>
<td width="60" align="center" class="t"><a href="add.asp">发表文章</a></td>
<td width="60" align="center" class="t"><a onclick="return confirm('真的要清空全部文章吗?');" href="del_all.asp">清空文章</a></td>
<td width="60" align="center" class="t"><a onclick="return confirm('真的要清空全部评论吗?');" href="del_allreply.asp">清空评论</a></td>
<td width="60" align="center" class="t"><a onclick="return confirm('真的要退出管理吗?');" href="logout.asp">退出管理</a></td>
<%
}
%>
</tr>
</table>
<table border="0" align="center" cellspacing="1" class="b" style="table-layout:fixed;">
<tr><%=strdataMenu()%></tr>
</table>
<%=top%>
</div>