最近有朋友問到我如何用xml資料繫結前台repeater檔案,我查了一下以前做的專案,這裡給大家介紹一下,方便大家也方便我自己日後查詢。
廢話少說,上**:
前台檔案(.aspx):
在aspx前台頁面引用xml命名空間:
<%@ page language="c#" autoeventwireup="true" codebehind="exam_review.aspx.cs" inherits="haitian.exam.exam_review" %>
<%@ import namespace="system.xml" %>
在repeater中繫結資料如下:
rptlist">
<%#((xmlnode)container.dataitem).childnodes[7].innertext%>1
<%#(int.parse(((xmlnode)container.dataitem).childnodes[8].innertext)+1)%>
)"; id="review">返回問題
後台檔案(.cs):
protected void page_load(object sender, eventargs e)
}///
/// 用xml資料來源來繫結repeater
///
/// 2011-08-15
/// xml檔案的路徑
//這裡rptlist為前台(aspx)頁面repeater的id
this.rptlist.datasource = xmldoc.documentelement.childnodes;
this.rptlist.databind();
}
如何用SQL資料支援XML
如果你在it業工作,那麼你很可能聽說過xml 但如果你的工作主要與sql server有關,那麼你可能並沒有直接運用過xml。xml已經是web程式設計環境中的普遍的資料格式了,而且它也是.framework中主要的底層技術之一。sql server以兩種方式來支援xml 通過sql server本...
如何用XML實現高效管理資料
xml資料是web上資料交換和表達的標準形式,和關聯式資料庫相比,xml資料可以表達具有複雜結構的資料,比如樹結構的資料。正因為此,在資訊整合系統中,xml資料經常被用作資訊轉換的標準。bitscn com 管理三大領域資料 bbs.bitscn.com網管論壇 基於xml資料的特點,xml資料的高...
wpf學習筆記 前台端資料繫結
1 前端 繫結元素屬性 2 模型 serializable public class xmlvisitinfo inotifypropertychanged private string myport public string port set 實現inotifypropertychanged介面...