分类: Cms预览模式: 普通 | 列表

其他文字广告在其它页面的调用

后台广告管理有一个其它文字广告,多数人只应用在论坛楼层间,但这个文字广告如果在其它页面调用,用正常的JS调用是调不出来的,所以想了这个办法,适合于在任何页面调用,至于调出来做什么,那就看你的需要了,可以做首页文字广告位等等拉,自己看着办..呵呵!
Code:
sub ads_txt(ads_tnum,ads_cnum)
dim tmp1,topic,url
sql="select top "&ads_tnum&" id,topic,url from ads_txt where nsort='other' order by id desc"
set rs=joekoe_cms.exec(sql,1)
do while not rs.eof

查看更多...

Tags: 文字 广告

分类:Cms | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 590

[私密日志] 私密日志

该日志是私密日志,只有管理员或发布者可以查看!
分类:Cms | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 550

新闻列表双行显示

<table border=0  bgcolor="#ffffff">
<%
sql="select top 16 id,topic,tim from news where hidden=1 and c_id=21 order by id desc"
set rs=joekoe_cms.exec(sql,1)
do while not rs.eof
response.write "<tr>"
  for i=1 to 2

查看更多...

Tags: 新闻

分类:Cms | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 618

Microsoft OLE DB Provider for ODBC Drivers (0x8004

剥离克隆 插件 克隆文章出错

错误类型:
Microsoft OLE DB Provider for ODBC Drivers (0x80040E21)
ODBC 驱动程序不支持所需的属性。

解决方法:看看你的access表里有没有字段是空的,例如ole类型的字段,是空的话就会出现以上错误
分类:Cms | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 499

更换所有文件中的JOEKOE字样

JOEKOE在许多过程和class名称中都会有,替换的时候你要用一个比较生僻的字符(比如abcdefg)来替换比较安全,而且只能是26个英文字母和-_两个符号
分类:Cms | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 545

其他文字广告在其它页面的调用

sub ads_txt(ads_tnum,ads_cnum)
dim tmp1,topic,url
sql="select top "&ads_tnum&" id,topic,url from ads_txt where nsort='other' order by id desc"
set rs=joekoe_cms.exec(sql,1)
do while not rs.eof
topic=rs("topic")
tmp1=tmp1&"<table cellspacing=1 cellpadding=1><tr><td><a href="&rs("url")&" target=_blank>"&joekoe_cms.code_html(topic,1,ads_cnum)&"</a></td></tr></table>"

查看更多...

分类:Cms | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 405

自动生成缩略图,精彩图片生成小图

'----------------------------------水印修改开始----------------------------------------
          Dim Photo,Logo,PhotoPath,LogoPath,Jpeg,Path
        '头像水印修改
        if lcase(uppath)="face" then
            if lcase(upfile_name2)<>"gif" then
                    '创建缩微图
                        Set Jpeg = Server.CreateObject("Persits.Jpeg")'建立实例

查看更多...

分类:Cms | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 449

后台留言增加审核按钮

在回复时间之后增加如下代码:

引用内容 引用内容
<tr>
<td>审核管理: </td>
<td ><input type='radio' value='0' name='passed'  <%if rs("passed")=0 then response.write "checked"%>>未通过审核<input type='radio' value='1' name='passed'  <%if rs("passed")=1 then response.write "checked"%>>通过审核</td>
</tr>

查看更多...

Tags: 审核

分类:Cms | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 415

后台-用户管理-添加用户

sub joekoe_chk_add()
  dim username,password,email,password2
  call admin_td("添加管理员")
  if chk() then
  username=trim(request.form("username"))
  password=trim(request.form("password"))
  if username="" or password="" then

查看更多...

Tags: 管理

分类:Cms | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 426
错误类型:
Microsoft OLE DB Provider for ODBC Drivers (0x80004005)
[Microsoft][ODBC Microsoft Access Driver] 所有记录中均未找到搜索关键字。
/include/jk_class.asp, 第 20 行


解决方法:

查看更多...

Tags: 错误

分类:Cms | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 566