账号通
    

账号  

密码  

6967

查看

15

回复
主题:按ID号发布文章(精) [收藏主题] 本贴被认定为精华 转到:  
lxykx 当前离线

325

主题

0

广播

0

粉丝
添加关注
级别:三年级

用户积分:4196 分
登录次数:536 次
注册时间:2006/9/25
最后登录:2012/10/31
lxykx 发表于:2007/2/7 19:09:00   | 只看该作者 查看该作者主题 楼主 
科汛在线商城系统(NET)

今天终于把按文章ID生成静态文章搞定了,相信许多朋友应该需要,为发布文章节约不少时间.


此主题相关图片如下:

第一步:在Admin\Include\refreshhtml.asp文件的第90行下面插入下面代码

Response.Write "  <form action=""RefreshHtmlSave.asp?Types=Content&RefreshFlag=AID&ChannelID=" & ChannelID & """ method=""post"" name=""IDForm"">"
  Response.Write "    <tr class='tdbg'>"
  Response.Write "      <td height=""35"" align=""center"">按ID发布</td>"
  Response.Write "      <td height=""35""> 从"
  Response.Write "        <input name=""StartID"" type=""text"" id=""StartID"">"
  Response.Write "        到"
  Response.Write "        <input name=""EndID"" type=""text"" id=""EndID"">"
  Response.Write "        <input name=""SubmitID"" type=""submit"" id=""SubmitID"" value="" 发 布 &gt;&gt;"" border=""0"">"
  Response.Write "      </td>"
  Response.Write "    </tr>"
  Response.Write "  </form>"

第二步:在Admin\Include\refreshhtmlsave.asp文件的第258行定义StartID\和EndID变量

第三步:在Admin\Include\refreshhtmlsave.asp文件的第286行下面插入下面代码:

   Case "AID" '按ID生成
     StartID = Request("StartID")
     EndID = Request("EndID")
   
    If startID<>"" and EndID ="" then
     RefreshSql = "Select top 1 * from KS_Article where Verific=1 and  DelTF=0 And ID = " & StartID & " Order By ID Desc"
     RefreshTotalNum =1
    Elseif startID<>"" and EndID <> "" then
          
     RefreshSql = "Select top 1 * from KS_Article where Verific=1 and  DelTF=0 And ID>= " & StartID & " And  ID <=" & EndID & " Order By ID Desc"
     
     Set TotalRS = Server.CreateObject("Adodb.RecordSet")
     TotalRS.Open "Select count(*) from KS_Article where Verific=1 and  DelTF=0 And ID >=" & StartID & " And  ID <=" & EndID, Conn, 1, 1
     RefreshTotalNum = TotalRS(0)
     TotalRS.Close
      Set TotalRS = Nothing
     
    End If

三步搞定.


[此贴子已经被作者于2007-2-7 19:13:52编辑过]

 
  支持(0) | 反对(0) 回到顶部顶端 回到底部底部
sunkaifei 当前离线

25

主题

0

广播

0

粉丝
添加关注
级别:学前班

用户积分:487 分
登录次数:37 次
注册时间:2007/1/16
最后登录:2007/10/9
sunkaifei 发表于:2007/3/13 13:48:00   | 只看该作者 查看该作者主题 沙发 
科汛智能建站系统
以下是引用lxykx在2007-2-7 19:09:50的发言:

今天终于把按文章ID生成静态文章搞定了,相信许多朋友应该需要,为发布文章节约不少时间.


此主题相关图片如下:

第一步:在Admin\Include\refreshhtml.asp文件的第90行下面插入下面代码

Response.Write "  <form action=""RefreshHtmlSave.asp?Types=Content&RefreshFlag=AID&ChannelID=" & ChannelID & """ method=""post"" name=""IDForm"">"
  Response.Write "    <tr class='tdbg'>"
  Response.Write "      <td height=""35"" align=""center"">按ID发布</td>"
  Response.Write "      <td height=""35""> 从"
  Response.Write "        <input name=""StartID"" type=""text"" id=""StartID"">"
  Response.Write "        到"
  Response.Write "        <input name=""EndID"" type=""text"" id=""EndID"">"
  Response.Write "        <input name=""SubmitID"" type=""submit"" id=""SubmitID"" value="" 发 布 &gt;&gt;"" border=""0"">"
  Response.Write "      </td>"
  Response.Write "    </tr>"
  Response.Write "  </form>"

第二步:在Admin\Include\refreshhtmlsave.asp文件的第258行定义StartID\和EndID变量

第三步:在Admin\Include\refreshhtmlsave.asp文件的第286行下面插入下面代码:

   Case "AID" '按ID生成
     StartID = Request("StartID")
     EndID = Request("EndID")
   
    If startID<>"" and EndID ="" then
     RefreshSql = "Select top 1 * from KS_Article where Verific=1 and  DelTF=0 And ID = " & StartID & " Order By ID Desc"
     RefreshTotalNum =1
    Elseif startID<>"" and EndID <> "" then
          
     RefreshSql = "Select top 1 * from KS_Article where Verific=1 and  DelTF=0 And ID>= " & StartID & " And  ID <=" & EndID & " Order By ID Desc"
     
     Set TotalRS = Server.CreateObject("Adodb.RecordSet")
     TotalRS.Open "Select count(*) from KS_Article where Verific=1 and  DelTF=0 And ID >=" & StartID & " And  ID <=" & EndID, Conn, 1, 1
     RefreshTotalNum = TotalRS(0)
     TotalRS.Close
      Set TotalRS = Nothing
     
    End If

三步搞定.


第二步:在Admin\Include\refreshhtmlsave.asp文件的第258行定义StartID\和EndID变量

我是菜鸟,完整定义StartID\和EndID变量的语句应该怎么写哦

 
  支持(0) | 反对(0) 回到顶部顶端 回到底部底部
news 当前离线

7

主题

0

广播

0

粉丝
添加关注
级别:学前班

用户积分:238 分
登录次数:6 次
注册时间:2007/2/10
最后登录:2007/2/12
news 发表于:2007/2/12 18:32:00   | 只看该作者 查看该作者主题 藤椅 
 
  支持(0) | 反对(0) 回到顶部顶端 回到底部底部
angle 当前离线

371

主题

0

广播

0

粉丝
添加关注
级别:三年级

用户积分:1443 分
登录次数:96 次
注册时间:2006/8/25
最后登录:2008/11/14
angle 发表于:2007/2/9 23:52:00   | 只看该作者 查看该作者主题 板凳 
 
  支持(0) | 反对(0) 回到顶部顶端 回到底部底部
3950072 当前离线

121

主题

0

广播

0

粉丝
添加关注
级别:一年级

用户积分:1023 分
登录次数:137 次
注册时间:2006/12/13
最后登录:2007/7/22
3950072 发表于:2007/2/9 19:12:00   | 只看该作者 查看该作者主题 报纸 
 
  支持(0) | 反对(0) 回到顶部顶端 回到底部底部
ksaly 当前离线

60

主题

0

广播

0

粉丝
添加关注
级别:学前班

用户积分:429 分
登录次数:35 次
注册时间:2007/1/30
最后登录:2007/3/19
ksaly 发表于:2007/2/12 16:02:00   | 只看该作者 查看该作者主题 地板 
科汛在线考试系统(NET)
以下是引用3950072在2007-2-9 19:12:41的发言:

牛X

 
  支持(0) | 反对(0) 回到顶部顶端 回到底部底部
一生有你 当前离线

10439

主题

0

广播

18

粉丝
添加关注
级别:版主

用户积分:72521 分
登录次数:1969 次
注册时间:2006/7/1
最后登录:2021/8/25
一生有你 发表于:2007/2/9 19:14:00   | 只看该作者 查看该作者主题 7楼 
 
  支持(0) | 反对(0) 回到顶部顶端 回到底部底部
lxykx 当前离线

325

主题

0

广播

0

粉丝
添加关注
级别:三年级

用户积分:4196 分
登录次数:536 次
注册时间:2006/9/25
最后登录:2012/10/31
lxykx 发表于:2007/2/9 21:43:00   | 只看该作者 查看该作者主题 8楼 
科汛在线考试系统(NET)

其他频道按同样的方面改一个就可以了

 
  支持(0) | 反对(0) 回到顶部顶端 回到底部底部
samaime 当前离线

102

主题

0

广播

0

粉丝
添加关注
级别:一年级

用户积分:1539 分
登录次数:168 次
注册时间:2006/12/6
最后登录:2008/3/9
samaime 发表于:2007/2/9 18:20:00   | 只看该作者 查看该作者主题 9楼 
做在线知识付费 选科汛云开店
帅哥你能不能修改下专题的发布,能够实现  按ID发布  或  按指定某个专题发布
 
  支持(0) | 反对(0) 回到顶部顶端 回到底部底部
monfs 当前离线

888

主题

2

广播

1

粉丝
添加关注
级别:七年级

用户积分:4384 分
登录次数:556 次
注册时间:2006/4/8
最后登录:2023/2/25
monfs 发表于:2007/2/9 16:58:00   | 只看该作者 查看该作者主题 10楼 
 
  支持(0) | 反对(0) 回到顶部顶端 回到底部底部
<上一主题 | 下一主题 >
Powered By KesionCMS Version X1
厦门科汛软件有限公司 © 2006-2016 页面执行1.46094秒 powered by KesionCMS 9.0