html调用asp的问题,请高手帮忙....
我想在HTML首页调用news.asp改怎么弄呀,不要用IFRAME的?所以想请高手帮忙写下咯...谢谢,我没多少积分,全部的家当就30都给你吧下面是new.asp的代码...
我想在HTML首页调用news.asp改怎么弄呀,不要用IFRAME的?所以想请高手帮忙写下咯...谢谢,我没多少积分,全部的家当就30都给你吧
下面是 new.asp的代码
<!--#include file="mdb.asp"-->
<link rel="stylesheet" href="css/style.css">
<BODY leftMargin=0 topMargin=0 marginwidth="0" marginheight="0">
<%
set rsDe=server.createobject("adodb.recordset")
sql= "select * from detail Where verity=1 order by yl_intime desc"
'response.write sql
rsDe.open sql,conn,1,1
%>
<table table border=0 cellpadding=0 cellspacing=2 width=100% height=4>
<%
n=1
While Not rsDe.Eof and n<50
%>
<td height=18> <a href='<%=rsDe("url")%>' target='_blank'><img src=logo/01.gif border=0></a> <a href='showurl.asp?id=<%=rsDe("id")%>' title=近十分钟:<%=rsDe("yl_10in")%>次|当天来路:<%=rsDe("yl_dayin")%>次 历史来路:<%=rsDe("yl_in")%>次|历史去路:<%=rsDe("out")%>次 target='_blank'>
<%if rsDe("yl_dayin")>4 then%>
<font color=#ff00FF>
<%end if%>
<%if rsDe("yl_dayin")>9 then%>
</font><font color=#0000ff>
<%end if%>
<%if rsDe("yl_dayin")>19 then%>
</font><font color=#FF0000>
<%end if%>
<%if rsDe("yl_dayin")>29 then%>
<font color=#0000ff><b>
<%end if%>
<%if rsDe("yl_dayin")>49 then%>
<font color=#ff0000><b>
<%end if%>
<%=rsDe("title")%>
<%if rsDe("yl_dayin")>4 then%>
</b></font>
<%end if%>
</a></td>
<%
if n mod 7 =0 then
Response.Write("</Tr>")
end if
rsDe.MoveNext
n=n+1
Wend
rsDe.close
set rsDe=nothing
%></table>
谢谢,我是菜鸟,麻烦详细一点,非常的感谢~~~~
这样好象不行呀,前面都试过了,是不是要改写 news.asp
谁能写的清楚一点呀,谢谢......
非常感谢,急.....
在线等........... 展开
下面是 new.asp的代码
<!--#include file="mdb.asp"-->
<link rel="stylesheet" href="css/style.css">
<BODY leftMargin=0 topMargin=0 marginwidth="0" marginheight="0">
<%
set rsDe=server.createobject("adodb.recordset")
sql= "select * from detail Where verity=1 order by yl_intime desc"
'response.write sql
rsDe.open sql,conn,1,1
%>
<table table border=0 cellpadding=0 cellspacing=2 width=100% height=4>
<%
n=1
While Not rsDe.Eof and n<50
%>
<td height=18> <a href='<%=rsDe("url")%>' target='_blank'><img src=logo/01.gif border=0></a> <a href='showurl.asp?id=<%=rsDe("id")%>' title=近十分钟:<%=rsDe("yl_10in")%>次|当天来路:<%=rsDe("yl_dayin")%>次 历史来路:<%=rsDe("yl_in")%>次|历史去路:<%=rsDe("out")%>次 target='_blank'>
<%if rsDe("yl_dayin")>4 then%>
<font color=#ff00FF>
<%end if%>
<%if rsDe("yl_dayin")>9 then%>
</font><font color=#0000ff>
<%end if%>
<%if rsDe("yl_dayin")>19 then%>
</font><font color=#FF0000>
<%end if%>
<%if rsDe("yl_dayin")>29 then%>
<font color=#0000ff><b>
<%end if%>
<%if rsDe("yl_dayin")>49 then%>
<font color=#ff0000><b>
<%end if%>
<%=rsDe("title")%>
<%if rsDe("yl_dayin")>4 then%>
</b></font>
<%end if%>
</a></td>
<%
if n mod 7 =0 then
Response.Write("</Tr>")
end if
rsDe.MoveNext
n=n+1
Wend
rsDe.close
set rsDe=nothing
%></table>
谢谢,我是菜鸟,麻烦详细一点,非常的感谢~~~~
这样好象不行呀,前面都试过了,是不是要改写 news.asp
谁能写的清楚一点呀,谢谢......
非常感谢,急.....
在线等........... 展开
5个回答
展开全部
把.html改为.asp,然后再用<!--#include file="news.asp"--> 就可以了!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
看你ASP有内容输出,如果<!--#include file="news.asp"-->,放在什么地方,内容出现在什么地方,画面大小没法控制,还要占据html页几行,可能出现与HTML其他内同的格式不协调,如果你调好的ASP还好点,最好把你的ASP程序拿到你的HTML里去,想在哪显示就放个<%=rsde("")%>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<!--#include file="news.asp"-->
简单
简单
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<!--#include file="news.asp"-->肯定不行,htm不支持include
解决方法
1.用iframe,这个要保证其高度随页面变化,否则会出现滚动条
2.用ajax,不刷新页面的更新
3.把htm改为asp,然后用include
解决方法
1.用iframe,这个要保证其高度随页面变化,否则会出现滚动条
2.用ajax,不刷新页面的更新
3.把htm改为asp,然后用include
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询