asp.net中文章详细页面如何接收datalist中的传值?传递文章ID,详细页面要显示对应id的标题和内容 5
<div><ahref="art_cont.aspx?id=<%#Eval("ArtID")%>">阅读全文</a></div>。详细页面如果也用datalist控件怎么...
<div><a href="art_cont.aspx?id=<%# Eval("ArtID") %>">阅读全文</a></div>。详细页面如果也用datalist控件怎么接受值?怎么显示内容?
展开
展开全部
Eval("ArtID")这句代码就是已经获取到的ID
通过文件的ID号查询到文件的内容
Select [文件内容] from 文章表 where id=Eval("ArtID")
然后显示到页面当中
<html>
<head>
<SCRIPT LANGUAGE="JavaScript">
function openwin()
{OpenWindow=window.open("", "newwin", "height=250,
width=250,toolbar=no,scrollbars="+scroll+",menubar=no");
//写成一行
OpenWindow.document.write("<TITLE>例子</TITLE>")
OpenWindow.document.write("<BODY BGCOLOR=#ffffff>")
OpenWindow.document.write("<h1>Hello!</h1>")
OpenWindow.document.write("获取到的文件内容的值")///////////文章内容的值
OpenWindow.document.write("</BODY>")
OpenWindow.document.write("</HTML>")
OpenWindow.document.close()}
</SCRIPT>
</head>
<body>
<a href="#"
onclick="openwin()">打开一个窗口</a>
<input type="button"
onclick="openwin()" value="打开窗口">
</body>
</html>
这样基本上就完成了 试试看吧
通过文件的ID号查询到文件的内容
Select [文件内容] from 文章表 where id=Eval("ArtID")
然后显示到页面当中
<html>
<head>
<SCRIPT LANGUAGE="JavaScript">
function openwin()
{OpenWindow=window.open("", "newwin", "height=250,
width=250,toolbar=no,scrollbars="+scroll+",menubar=no");
//写成一行
OpenWindow.document.write("<TITLE>例子</TITLE>")
OpenWindow.document.write("<BODY BGCOLOR=#ffffff>")
OpenWindow.document.write("<h1>Hello!</h1>")
OpenWindow.document.write("获取到的文件内容的值")///////////文章内容的值
OpenWindow.document.write("</BODY>")
OpenWindow.document.write("</HTML>")
OpenWindow.document.close()}
</SCRIPT>
</head>
<body>
<a href="#"
onclick="openwin()">打开一个窗口</a>
<input type="button"
onclick="openwin()" value="打开窗口">
</body>
</html>
这样基本上就完成了 试试看吧
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询