www.gusucode.com > 深度梦想整站系统(asp) 1.14.02源码程序 > admin/article/article_isView.asp

    <%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<%
projectRootPath = "../../"	'相对当前应用程序根的位置
%>
<!-- #include file="../web.config.asp"-->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta name="robots" content="noindex,nofollow" />
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
    <title>管理</title>
    
    <link href="../themes/<%=theme_Path%>/main.css" rel="stylesheet" type="text/css" />
</head>

<body  id="bodyBg1">
<br />
&nbsp; <a href="article_Manage.asp">文章管理</a> | <a href="article_Add.asp">添加文章</a>
<hr class="Nav-hr" />
<br />

<dl class="manageContent">
    <dt>文章管理</dt>
    <dd>
    	<br />
        <%
		id=request.Form("articleView")
		if(id<>"")then
			sql="update deep_Article set fisView=1 where fid in ("&id&")"
			conn.execute(sql)
			Response.Write("["&id&"]审核成功,前台可以看到!!")
		else
			Response.Write("["&id&"]审核不成功,前台看不到!!")
		end if
		%>
        <br />
    </dd>
</dl>
<br />
</body>
</html>
<%
call closeConnDB()
%>