用Asp.net完成基于XML的留言簿之3
發(fā)表時(shí)間:2024-01-07 來(lái)源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要](2) viewguestbook.aspx:< %@ Page Language="C#" % >< %@ Import Namespace="System" % >< %@ Import Namespace="Sy...
(2) viewguestbook.aspx:
< %@ Page Language="C#" % >
< %@ Import Namespace="System" % >
< %@ Import Namespace="System.IO" % >
< %@ Import Namespace="System.Data" % >
< %-- 以上是所需的名字空間 --% >
< html >
< head >
< title >歡迎來(lái)到我的留言簿< /title >
< script language="C#" runat=server >
//頁(yè)面下載完畢后,運(yùn)行這個(gè)腳本
public void Page_Load(Object sender, EventArgs e)
{
//包含所有數(shù)據(jù)的XML文件的路徑
//如果你的路徑和下面的不同,則請(qǐng)修改
string datafile = "db/guest.xml" ;
//運(yùn)用一個(gè)Try-Catch塊完成信息讀取功能
try
{
//建立一個(gè)數(shù)據(jù)集對(duì)象
DataSet guestData = new DataSet();
//為數(shù)據(jù)庫(kù)文件打開(kāi)一個(gè)FileStream
FileStream fin ;
fin = new FileStream(Server.MapPath(datafile),FileMode.Open,
FileAccess.Read,FileShare.ReadWrite) ;
//把數(shù)據(jù)庫(kù)中內(nèi)容讀到數(shù)據(jù)集中
guestData.ReadXml(fin);
fin.Close();
//將第一個(gè)表中的數(shù)據(jù)集付給Repeater
MyDataList.DataSource = guestData.Tables[0].DefaultView;
MyDataList.DataBind();
}
catch (Exception edd)
{
//捕捉異常
errmess.Text="不能從XML文件讀入數(shù)據(jù),原因:"+edd.ToString() ;
}
}
< /script >
< LINK href="mystyle.css" type=text/css rel=stylesheet >
< /head >
< body topmargin="0" leftmargin="0" marginwidth="0" marginheight="0" rightmargin="0" >
< !-- #Include File="header.inc" -- >
< asp:label id="errmess" text="" style="color:#FF0000" runat="server" / >
< br >
< h3 align="center" class="newsbody" >我的留言簿< /h3 >
< ASP:Repeater id="MyDataList" runat="server" >
< headertemplate >
< table class="mainheads" width="100%" style="font: 8pt verdana" >
< tr style="background-color:#FF9966" >
< th >
姓名
< /th >
< th >
國(guó)家
< /th >
< th >
Email
< /th >
< th >
留言
< /th >
< th >
日期/時(shí)間
< /th >
< /tr >
< /headertemplate >
< itemtemplate >
< tr style="background-color:#FFFFCC" >
< td >
< %# DataBinder.Eval(Container.DataItem, "Name") % >
< /td >
< td >
< %# DataBinder.Eval(Container.DataItem, "Country") % >
< /td >
< td >
< %# DataBinder.Eval(Container.DataItem, "Email") % >
< /td >
< td >
< %# DataBinder.Eval(Container.DataItem, "Comments") % >
< /td >
< td >
< %# DataBinder.Eval(Container.DataItem, "DateTime") % >
< /td >
< /tr >
< /itemtemplate >
< footertemplate >
< /table >
< /footertemplate >
< /ASP:Repeater >
< !-- #Include File="footer.inc" -- > < /body >< /html >