Use ASP to build your website News and Publishing (3)
Source: Internet
Author: User
(3) insert news code into your page
The best news publishing, of course, is customized for the website itself, so that it can be consistent with the homepage style, but as a result, the news publishing system lacks versatility, it cannot be moved to other websites for use. If there is a loss, the key is to find a parallel point. The best way to test the filter is to separate it from the page, so that it can achieve good results without affecting the appearance of the page, on a webpage using news, we can place such a script statement to call news code.
<Script language = "JavaScript"
Src = "http // xxx.com.cn/special/linux/lnews/autoup.asp">
You can check the effect here.
Now let's take a look at the autoup. asp code.
<% @ Language = "vbscript" %>
<! -- # Include Virtual = "/news/data. inc" -->
<%
Set rs = Server. CreateObject ("ADODB. Recordset ")
SQL = "select * from data Order by news_id Desc"
Rs. open SQL, conn, 3, 2
If rs. bof then
Response. end
End if
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.