ASP 根據(jù)用戶權(quán)限判斷顯示的列標(biāo)題
更新時(shí)間:2009年03月28日 00:39:58 作者:
通過session的屬性值判斷判斷顯示的列標(biāo)題
<table border="1" cellpadding="0" cellspacing="0" style="border-collapse:collapse" bordercolor="#6699CC" width="700" align="center">
<tr>
<td height="25" background="images/b2.gif" class="td1">
<div align="center">
<a href="<%=homeurl%>">[返回首頁(yè)]</a>
<a href="index.asp">[觀看留言]</a>
<a href="write.asp">[簽寫留言]</a>
<% if session("dkrsguestbook")="" then%>
<a href="login.asp">[管理登陸]</a>
<%else%>
<a href="edit.asp">[更改資料]</a>
<a href="editannounce.asp">[公告管理]</a>
<a href="loginout.asp">[退出登陸]</a>
<% end if %>
</div>
</td>
</tr>
</table>
<tr>
<td height="25" background="images/b2.gif" class="td1">
<div align="center">
<a href="<%=homeurl%>">[返回首頁(yè)]</a>
<a href="index.asp">[觀看留言]</a>
<a href="write.asp">[簽寫留言]</a>
<% if session("dkrsguestbook")="" then%>
<a href="login.asp">[管理登陸]</a>
<%else%>
<a href="edit.asp">[更改資料]</a>
<a href="editannounce.asp">[公告管理]</a>
<a href="loginout.asp">[退出登陸]</a>
<% end if %>
</div>
</td>
</tr>
</table>
相關(guān)文章
ASP中實(shí)現(xiàn)執(zhí)行定時(shí)任務(wù)的方法
這篇文章主要介紹了ASP中實(shí)現(xiàn)執(zhí)行定時(shí)任務(wù)的方法,本文使用WSH (Windows Scripting Host) 的實(shí)現(xiàn)定時(shí)任務(wù),需要的朋友可以參考下2014-07-07
asp頁(yè)面提示Response 對(duì)象 錯(cuò)誤 ASP 0156 : 80004005 HTTP 頭錯(cuò)誤
訪問asp頁(yè)面時(shí)提示Response 對(duì)象 錯(cuò)誤 ASP 0156 : 80004005 HTTP 頭錯(cuò)誤?,行 0 已將 HTTP 頭輸出到客戶端瀏覽器。任何對(duì) HTTP 頭的修改都必須在輸出頁(yè)內(nèi)容之前進(jìn)行。2011-09-09
防止網(wǎng)站被采集的理論分析以及十條方法對(duì)策
很多防采集方法在施行的時(shí)候需要考慮是否影響搜索引擎對(duì)網(wǎng)站的抓取,所以先來分析下一般采集器和搜索引擎爬蟲采集有何不同。2009-04-04
asp下對(duì)POST提交數(shù)據(jù)限制的解決方法
由于微軟對(duì)POST提交數(shù)據(jù)的大小進(jìn)行了限制,當(dāng)表單發(fā)送的數(shù)據(jù)量很大時(shí),就會(huì)報(bào)錯(cuò)(錯(cuò)誤 "ASP 0107 : 80004005")。原因是微軟對(duì)用Request.Form()可接收的最大數(shù)據(jù)限制為100K字節(jié)。2008-06-06

