程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> ASP.NET >> 關於ASP.NET >> 用ASP.NET建立簡單的新聞發布系統

用ASP.NET建立簡單的新聞發布系統

編輯:關於ASP.NET

下面是一個建立新聞發布系統的程序,不用和數據庫打交道哦

步驟:

(1).在vs2005中新建網站,新建三個aspx網頁,分別命名:title.aspx,news.aspx,main.aspx其中title.aspx用來設置標題,可以自己設計,寫幾個字也行,news.aspx用來顯示新聞標題,main.aspx用來顯示新聞內容。

(2).新建htm頁,用來設計框架。代碼如下:

<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>無標題頁</title>
</head>
<frameset border="0" bordercolor="#6699cc" framespacing="3" id="fsTop" rows="85,*">
<frame frameborder="no" marginheight="0" marginwidth="0" name="title" noresize scrolling="no" src="title.aspx" >
<frameset border="0" frameborder="1" framespacing="3"  cols="110,*">
<frame frameborder="0" marginheight="0" marginwidth="0" name="dir" src="news.aspx" style="BORDER-RIGHT: #99ccff 1px solid; BORDER-TOP: #003366 1px solid" scrolling="auto" >
<frame bordercolor="#6699cc" frameborder="0" name="main" scrolling="yes" src="main.aspx?name=hello" style="BORDER-LEFT: #99ccff 2px groove; BORDER-TOP: #003366 1px solid">
</frameset>
</frameset>
</html>

(3).現在你的程序還沒有內容,新建xml文件,命名contents.xml,用來顯示新聞標題,代碼如下:

<?xml version="1.0" encoding="GB2312"?>
<topiclist type="Dreamsite News">
<topic>
<title>歡迎進入千裡之外的新聞網!</title>
<href>main.aspx?name=hello</href>
</topic>
<topic>
<title>測試新聞</title>
<href>main.aspx?name=test</href>
</topic>
<topic>
<title> 第一條新聞</title>
<href>main.aspx?name=first</href>
</topic>
<topic>
<title> 第二條新聞</title>
<href>main.aspx?name=dddd</href>

</topiclist>注意我們的每條新聞內容都是一個xml文件,現在你知道該做什麼了吧,新建hello.xml;test.xml;first.xml;dddd.xml文件,在這裡給出一個例子,代碼如下:

<?xml version="1.0" encoding="GB2312"?>
<document>
<title>今日新聞</title>
<abstract>頭版新聞</abstract>
<author>千裡之外</author>
<content>&lt;paragraph&gt;大家好&lt;/paragraph&gt;</content>
</document>現在你就可以看到效果了,下面我們看一下發布新聞的代碼,也很簡單,新建manage.aspx頁面,前台代碼:
</head>
<body>
<form id="form1" runat="server">
<div>
<p>千裡之外個人新聞發布系統</p>

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved