将数据库中的内容显示的页面的方法:1、链接数据库,提取所需内容;2、将内容显示到页面;asp下面的写法:<%set st = server.CreateObject("adodb.recordset")sql = "select title from news where newsid = 10"st.open sql,conn,1,1response.write st("title");%>