网站原先用的是ACCESS数据库,后转为用MSSQL,直接升迁mssql2000,转换后网站数据能正常显示,但是也出现了两个问题,想请教各位,谢谢~1、网站头部文件全部不显示了。
头部文件调用代码:
call web_head(0,0,0,0,0)
call article_load(0,0,0)2、内页标题链接无法正常显示,原先标题链接代码是:function format_article_topic_type(b_jt,b_username,b_topic,b_c_num,b_url,b_tim,b_counter,b_ispic,b_tit,b_count,b_tim_type,b_emoney,b_power)
  dim n_img,tim_type,n_c_num
  n_c_num=b_c_num
  if b_ispic then
    n_img="&nbsp;<img src='"&joekoe_cms.web_dir_skin&"small/img.gif' border=0>"
    n_c_num=n_c_num-2
  end if
  if b_tim_type>0 then
    if b_tim_type=2 then tim_type=tim_type&"</td><td align=right>"
    tim_type=tim_type&"&nbsp;<font class=tims>"&mid(b_tim,6,5)&"</font>"
  end if
  format_article_topic_type="<tr><td >"&b_jt&"<a href='javascript:;' onclick=""javascript:article_view_return('"&b_emoney&"','"&b_power&"','"&b_url&"');"" alt='"&b_tit&":"&joekoe_cms.code_html(b_topic,1,0)&"<br>发 布 人:"&b_username&"<br>"&b_count&":"&b_counter&" 人次<br>整理时间:"&b_tim&"' >"&joekoe_cms.code_html(b_topic,1,n_c_num)&"</a>"&n_img&tim_type&"</td></tr>"
end function原先点击标题显示链接为:et_view.asp?id=320
现在标题正常显示,但点击时链接为:'javascript:;请问这是哪有问题,如何解决,谢谢~
在线等