[求助]求助关于asp问题请高手指教~
我现在有个文件,假设为a.asp
一般要显示他的内容的时候为
a.asp?id=25 25为要调用的ID
可是我不想让他这样显示,我想输入a.asp就直接调用在内容页面里面
a.asp里面添加一句可以修改id的地方,这样我就可以修改用任何一句了.但是我又不想套在框架里面,不然是可以实现,如果套进去我就没有让网页变的美观了
一般要显示他的内容的时候为
a.asp?id=25 25为要调用的ID
可是我不想让他这样显示,我想输入a.asp就直接调用在内容页面里面
a.asp里面添加一句可以修改id的地方,这样我就可以修改用任何一句了.但是我又不想套在框架里面,不然是可以实现,如果套进去我就没有让网页变的美观了
<iframe WIDTH=100% HEIGHT=550 align=center MARGINWIDTH=0 Name=newsmar MARGINHEIGHT=0 HSPACE=0 VSPACE=0 FRAMEBORDER=0 SCROLLING=auto src="a.asp?ID=25"></iframe>
我在b.asp里面套用上面a.asp?id=25 这样显示是会就对了
<!--#include file="../inc/inc.asp"-->
<link href="../css/css.css" rel="stylesheet" type="text/css">
<style type="text/css">
<!--
.style1 {
color: #FF6600;
font-weight: bold;
}
-->
</style>
<STYLE type="text/css">
<!--
BODY {
scrollbar-face-color:#C0C0C0;
scrollbar-highlight-color:#FFFFFF;
scrollbar-3dlight-color:#FFFFFF;
scrollbar-darkshadow-color:#FFFFFF;
scrollbar-shadow-color:#FFFFFF;
scrollbar-arrow-color:#808080;
scrollbar-track-color:#F3F3F3;
}
-->
</STYLE>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<%
'/////////////////////////////////////////////////////////////////////////////////////////
'作 用:新闻信息明细
'注 意:
' 1、参数:标题长度TitleLen, 页记录Num, 页列Cols, 日期格式DateSkins;
' 2、TitleLen,一个汉字为2字节,一个英文为1字节;
' 3、日期格式:格式1 2005年4月17日 格式2 2005-4-17 格式5 2005-04-17
' 4、Num必须是Cols的公倍数
' 5、模糊查询时查询文章标题和文章内容
'/////////////////////////////////////////////////////////////////////////////////////////
<!--#include file="../inc/inc.asp"-->
<link href="../css/css.css" rel="stylesheet" type="text/css">
<style type="text/css">
<!--
.style1 {
color: #FF6600;
font-weight: bold;
}
-->
</style>
<STYLE type="text/css">
<!--
BODY {
scrollbar-face-color:#C0C0C0;
scrollbar-highlight-color:#FFFFFF;
scrollbar-3dlight-color:#FFFFFF;
scrollbar-darkshadow-color:#FFFFFF;
scrollbar-shadow-color:#FFFFFF;
scrollbar-arrow-color:#808080;
scrollbar-track-color:#F3F3F3;
}
-->
</STYLE>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<%
'/////////////////////////////////////////////////////////////////////////////////////////
'作 用:新闻信息明细
'注 意:
' 1、参数:标题长度TitleLen, 页记录Num, 页列Cols, 日期格式DateSkins;
' 2、TitleLen,一个汉字为2字节,一个英文为1字节;
' 3、日期格式:格式1 2005年4月17日 格式2 2005-4-17 格式5 2005-04-17
' 4、Num必须是Cols的公倍数
' 5、模糊查询时查询文章标题和文章内容
'/////////////////////////////////////////////////////////////////////////////////////////
Dim ArtTitle_Show, ArtContent_Show, ArtHits_Show, ArtUpdateTime_Show
ArtID = Trim(Request.QueryString("ID"))
If IsNumeric(ArtID) = True Then
SqlShow = "select ArtTitle, ArtOriginalFileName, ArtSaveFileName, ArtSavePathFileName, ArtContent, ArtHits, ArtUpdateTime from ArticleList00 where ArtID = "&ArtID&" order by ArtRank"
set RsShow = server.CreateObject("adodb.recordset")
RsShow.open SqlShow, objConn, 1, 2
if Not( RsShow.eof or RsShow.bof ) then
If IsNumeric(RsShow("ArtHits")) = False Then
RsShow("ArtHits") = 1
RsShow.update
Else
RsShow("ArtHits") = RsShow("ArtHits") + 1
RsShow.update
End If
ArtTitle_Show = RsShow("ArtTitle")
ArtContent_Show = RsShow("ArtContent")
ArtHits_Show = RsShow("ArtHits")
ArtUpdateTime_Show = RsShow("ArtUpdateTime")
end if
RsShow.close
set RsShow = nothing
End If
%>
<table width="100%" height="100%" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF">
<tr>
<td align="center" valign="top">
<td align="center" valign="top">
<table width="98%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td> <table width="100%" border="0" cellpadding="2" cellspacing="1">
<tr>
<td colspan="2" align="left" class="newsBg" style="line-height:23px; padding:8px;"><% = ArtContent_Show %></td>
</tr>
</table> </td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
<tr>
<td> <table width="100%" border="0" cellpadding="2" cellspacing="1">
<tr>
<td colspan="2" align="left" class="newsBg" style="line-height:23px; padding:8px;"><% = ArtContent_Show %></td>
</tr>
</table> </td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>