| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 431 人关注过本帖
标题:不能新窗口打开链接
只看楼主 加入收藏
shanwi
Rank: 1
等 级:新手上路
帖 子:4
专家分:0
注 册:2012-3-26
收藏
 问题点数:0 回复次数:3 
不能新窗口打开链接
程序代码:
<!--#include file="Head1.asp"-->



 

 

 

 

 

 

 

 

 

 

 
<TABLE style="MARGIN-BOTTOM: 30px" border=0 cellSpacing=0 cellPadding=0
width="210">
  <TBODY>
  <TR>
    <TD width=12>&nbsp;</TD>
    <TD vAlign=top background="" width=756>
      <TABLE border=0 cellSpacing=0 cellPadding=0 width="100%">
        <TBODY>
        <TR>
          <TD height=637 vAlign=top
          background=/tu/index_041.jpg
            align=middle><TABLE border=0 cellSpacing=0 cellPadding=0 width=100%
              align=center><TBODY>
              <TR>
                <TD style="LINE-HEIGHT: 25px; FONT-SIZE: 14px" height=150
                vAlign=top align=left>
                <%=WebContent("NwebCn_NewsSort",request.QueryString("SortID"),"")%></TD></TR>
              <TR>
                <TD align=middle>&nbsp;</TD>
              </TR></TBODY></TABLE></TD></TR>
        <TR>
          <TD>&nbsp;</TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE> 

 

 

 

 

 

 
<%
function FriendLink()
  dim rs,sql
  set rs = server.createobject("adodb.recordset")
  sql="select top 4 * from NwebCn_FriendLink where ViewFlag and LinkType order by id asc"
  rs.open sql,conn,1,1
  if rs.eof then
    response.write "暂无相关信息"
  else
    do while not rs.eof
      response.write "<a href="""&rs("LinkUrl")&""" target=""_blank""><img src="""&rs("LinkFace")&""" alt="""&rs("LinkName")&"""></a><br/>"
      rs.movenext
    loop
  end if
  rs.close
  set rs=nothing
end function

function WebMenu(ParentID,i,level)
  dim rs,sql
  set rs = server.createobject("adodb.recordset")
  sql="select * from NwebCn_NewsSort where ViewFlag and ParentID="&ParentID&" order by ID asc"
  rs.open sql,conn,1,1
  if conn.execute("select ID from NwebCn_NewsSort Where ViewFlag and ParentID=0").eof then
    response.write "暂无相关信息"
  end if
  do while not rs.eof
    if ParentID=0 then
      response.write "<a href=""NewsList.asp?SortID="&rs("ID")&"target=""_blank"""">"&rs("SortName")&"</a><br/>"
    else
      response.write string(i," ")&"<a href=""NewsList.asp?SortID="&rs("ID")&"target=""_blank"""">"&rs("SortName")&"</a><br/>"
    end if
    i=i+1
    if i<level then call WebMenu(rs("ID"),i,level)
    i=i-1
    rs.movenext
  loop
  rs.close
  set rs=nothing
end function

function WebLocation()
  WebLocation="<img src=""../Images/Arrow_02.gif"" />&nbsp;您的位置:<a href=""../index.asp"" title=""返回首页"">首页</a>" & _
              "<img src=""../Images/Arrow_03.gif"" /><a href=""NewsList.asp"" title=""新闻动态"">新闻动态</a>"
  if request.QueryString("SortID")="" then
    WebLocation=WebLocation
  elseif not IsNumeric(request.QueryString("SortID")) then
    WebLocation=WebLocation&"<img src=""../Images/Arrow_03.gif"" />信息ID读取错误"
  elseif conn.execute("select * from NwebCn_NewsSort Where ViewFlag and  ID="&request.QueryString("SortID")).eof then
    WebLocation=WebLocation&"<img src=""../Images/Arrow_03.gif"" />信息ID读取错误"
  else
    dim rs,sql
    set rs = server.createobject("adodb.recordset")
    sql="select * from NwebCn_NewsSort where ViewFlag and ID="&request.QueryString("SortID")
    rs.open sql,conn,1,1
    WebLocation=WebLocation&SortPathTXT("NwebCn_NewsSort",rs("ID"))
    rs.close
    set rs=nothing
  end if
end function
function SortPathTXT(DataFrom,ID)
  dim rs,sql
  Set rs=server.CreateObject("adodb.recordset")
  sql="Select * From "&DataFrom&" where ViewFlag and ID="&ID
  rs.open sql,conn,1,1
  if not rs.eof then
    SortPathTXT=SortPathTXT(DataFrom,rs("ParentID"))&"<img src=""../Images/Arrow_03.gif"" /><a href=""NewsList.asp?SortID="&rs("ID")&"target=""_blank"">"&rs("SortName")&"</a>"
  end if
  rs.close
  set rs=nothing
end function

function WebContent(DataFrom,ID,SortPath)
  '-------------------
  dim rs,sql
  dim HideSort '未对外发布的类别
  set rs = server.createobject("adodb.recordset")
  '根据当前类别ID取需要列表产品的类别路径SortPath开始
  if ID="" then
    SortPath="0,"
  elseif not IsNumeric(ID) then
    response.write "<div class=""Bodyer_right_page_content"">暂无相关信息</div>"
    exit function
  elseif conn.execute("select * from "&DataFrom&" Where ViewFlag and  ID="&ID).eof then
    response.write "<div class=""Bodyer_right_page_content"">暂无相关信息</div>"
    exit function
  else
    SortPath=conn.execute("select * from "&DataFrom&" Where ViewFlag and  ID="&ID)("SortPath")
    conn.execute("update "&DataFrom&" set ClickNumber=ClickNumber+1 Where ID="&ID)
  end if
  sql="select * from "&DataFrom&" Where not(ViewFlag) and Instr(SortPath,'"&SortPath&"')>0"
  '根据当前类别ID取需要列表产品的类别路径SortPath结束
  rs.open sql,conn,1,1
  while not rs.eof
    HideSort="and not(Instr(SortPath,'"&rs("SortPath")&"')>0) "&HideSort
    rs.movenext
  wend
  rs.close
  '-------------------
  dim idCount'记录总数
  dim pages'每页条数
      pages=8
  dim pagec'总页数
  dim page'页码
      page=clng(request("Page"))
  dim pagenc'每页显示的分页页码数量=pagenc*5+1
      pagenc=5
  dim pagenmax'每页显示的分页的最大页码
  dim pagenmin'每页显示的分页的最小页码
  dim pageprevious'上一相邻的页码
  dim pagenext '下一相邻的页码
  '重置数据表名
  datafrom="NwebCn_News"
  dim datawhere'数据条件
      datawhere="where ViewFlag and Instr(SortPath,'"&SortPath&"')>0 "&HideSort& " "
  dim sqlid'本页需要用到的id
  dim Myself,PATH_INFO,QUERY_STRING'本页地址和参数
      PATH_INFO = request.servervariables("PATH_INFO")
      QUERY_STRING = request.ServerVariables("QUERY_STRING")'
      if QUERY_STRING = "" then
        Myself = PATH_INFO & "?"
      elseif Instr(PATH_INFO & "?" & QUERY_STRING,"Page=")=0 then
        Myself= PATH_INFO & "?" & QUERY_STRING & "&"
      else
        Myself = Left(PATH_INFO & "?" & QUERY_STRING,Instr(PATH_INFO & "?" & QUERY_STRING,"Page=")-1)
      end if
  dim taxis'排序的语句 asc,desc
      taxis="order by id desc "
  dim i'用于循环的整数
  '获取记录总数
  'sql="select * from NwebCn_Products where ViewFlag and Instr(SortPath,'"&SortPath&"')>0 "&HideSort
  sql="select count(ID) as idCount from ["& datafrom &"]" & datawhere
  set rs=server.createobject("adodb.recordset")
  rs.open sql,conn,0,1
  idCount=rs("idCount")
  '获取记录总数
  if(idcount>0) then'如果记录总数=0,则不处理
    if(idcount mod pages=0)then'如果记录总数除以每页条数有余数,则=记录总数/每页条数+1
      pagec=int(idcount/pages)'获取总页数
       else
      pagec=int(idcount/pages)+1'获取总页数
    end if
    '获取本页需要用到的id============================================
    '读取所有记录的id数值,因为只有id所以速度很快
    sql="select id from ["& datafrom &"] " & datawhere & taxis
    set rs=server.createobject("adodb.recordset")
    rs.open sql,conn,1,1
    rs.pagesize = pages '每页显示记录数
    if page < 1 then page = 1
    if page > pagec then page = pagec
    if pagec > 0 then rs.absolutepage = page 
    for i=1 to rs.pagesize
      if rs.eof then exit for 
      if(i=1)then
        sqlid=rs("id")
      else
        sqlid=sqlid &","&rs("id")
      end if
      rs.movenext
    next
  '获取本页需要用到的id结束============================================
  end if
  if(idcount>0 and sqlid<>"") then'如果记录总数=0,则不处理
    '用in刷选本页所语言的数据,仅读取本页所需的数据,所以速度快
    sql="select * from ["& datafrom &"] where id in("& sqlid &") "&taxis
    set rs=server.createobject("adodb.recordset")
    rs.open sql,conn,0,1
    response.write "<div class=""Bodyer_right_page_content"">"
    response.write "<div class=""Bodyer_right_page_content_infolist"">"
    while not rs.eof '填充数据到表格
      if rs("PictureFlag") then
        response.write "·<font color=""#0000ff"">[图]</font><a href=""NewsView.asp?ID="&rs("ID")&""">"&rs("NewsName")&"</a>&nbsp;<span class=""Black-bbb""></span><br />"
      else
        response.write "·<a href=""NewsView.asp?ID="&rs("ID")&""">"&rs("NewsName")&"</a>&nbsp;<span class=""Black-bbb""></span><br />"
      end if
      rs.movenext
    wend
    response.write "</div>"
    response.write "</div>"
  else
    response.write "<div class=""Bodyer_right_page_content"">暂无相关信息</div>"
    exit function
  end if
  response.write "<div class=""Bodyer_right_page_end"">" & vbCrLf
  Response.Write ""
  pagenmin=page-pagenc '计算页码开始值
  pagenmax=page+pagenc '计算页码结束值
  if(pagenmin<1) then pagenmin=1 '如果页码开始值小于1则=1
  if(page>1) then response.write ("<a href="""& myself &"Page=1"" title=""跳到第1页""><img src=""../Images/Arrow_08_first.gif"" width=""9"" height=""8"" /></a>&nbsp;&nbsp;") '如果页码大于1则显示(第一页)
  if page-(pagenc*2+1)<=0 then
    pageprevious=1
  else
    pageprevious=page-(pagenc*2+1)
  end if
  if(pagenmin>1) then response.write ("<a href="""& myself &"Page="& pageprevious &""" title=""第"& pageprevious &"页""><img src=""../Images/Arrow_08_Previous.gif"" width=""8"" height=""8"" /></a>&nbsp;&nbsp;") '如果页码开始值大于1则显示(更前)
  if(pagenmax>pagec) then pagenmax=pagec '如果页码结束值大于总页数,则=总页数
  for i = pagenmin to pagenmax'循环输出页码
    if(i=page) then
      response.write ("&nbsp;<font color=""#ff6600"">"& i &"</font>&nbsp;")
    else
      response.write ("[<a href="""& myself &"Page="& i &""">"& i &"</a>]")
    end if
  next
  if page+(pagenc*2+1)>=pagec then
    pagenext=pagec
  else
    pagenext=page+(pagenc*2+1)
  end if
  if(pagenmax<pagec) then response.write ("&nbsp;&nbsp;<a href="""& myself &"Page="& pagenext &""" title=""跳到第"&pagenext&"页""><img src=""../Images/Arrow_08_next.gif"" width=""8"" height=""8"" /></a>&nbsp;") '如果页码结束值小于总页数则显示(更后)
  if(page<pagec) then response.write ("&nbsp;<a href="""& myself &"Page="& pagec &""" title=""跳到第"&pagec&"页""><img src=""../Images/Arrow_08_last.gif"" width=""9"" height=""8"" /></a>") '如果页码小于总页数则显示(最后页)   
  response.write "</div>" & vbCrLf
  rs.close
  set rs=nothing
end function
%>
<!--#include file="Foot1.asp"-->
有高手帮看下不?怎么不能在新窗口打开。
不好意思呀。没分。新手。各位大侠帮下忙
搜索更多相关主题的帖子: 210 
2012-03-26 20:07
shanwi
Rank: 1
等 级:新手上路
帖 子:4
专家分:0
注 册:2012-3-26
收藏
得分:0 
response.write "<a href="""&rs("LinkUrl")&""" target=""_blank""><img src="""&rs("LinkFace")&""" alt="""&rs("LinkName")&"""></a><br/>"
我这样的写法是不是错了?
程序除了不能在新窗口打开。其它的一切正常。
在线求解
2012-03-26 20:09
shanwi
Rank: 1
等 级:新手上路
帖 子:4
专家分:0
注 册:2012-3-26
收藏
得分:0 
程序代码:
 if ParentID=0 then
      response.write "<a href=""NewsList.asp?SortID="&rs("ID")&"target=""_blank"""">"&rs("SortName")&"</a><br/>"
    else
      response.write string(i," ")&"<a href=""NewsList.asp?SortID="&rs("ID")&"target=""_blank"""">"&rs("SortName")&"</a><br/>"
    end if
新手在线等。求解
2012-03-26 20:10
blovesnow
Rank: 2
来 自:山东
等 级:论坛游民
帖 子:13
专家分:26
注 册:2012-3-22
收藏
得分:0 
回复 3楼 shanwi
不好意思,我也是新手,不太懂,在上课一下子看不完,我建议你去看一下这个论坛置顶的那个帖子,我觉得会对你有帮助,顶一下,加油啦

想学技术!!!
2012-03-28 17:02
快速回复:不能新窗口打开链接
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.040393 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved