XML 컨트롤...
# 2) .Net ( Vs 2005 )/기타2009. 5. 2. 00:02
Xml을 조작하기엔 XmlDocument 로 가지고 놀기 편하였다.
XmlDocument xDoc = new XmlDocument();
xDoc.Load : 읽어오기
xDoc.Save : 저장하기
XmlNodeList xList = xDoc.GetElementsByTagName("태그명");
xDoc["태그명"]
< XmlElement1 XmlAttribute1 XmlAttribute2 ... >
XmlDocument xDoc = new XmlDocument();
xDoc.Load : 읽어오기
xDoc.Save : 저장하기
XmlNodeList xList = xDoc.GetElementsByTagName("태그명");
xDoc["태그명"]
< XmlElement1 XmlAttribute1 XmlAttribute2 ... >
< XmlElement2 XmlAttribute1 XmlAttribute2 ... />
< XmlElement3 XmlAttribute1 XmlAttribute2 XmlAttribute3 ... />
</XmlElement1>
간단하게 위처럼 XmlElement로 접근이 쉽다.
간단한 설정 데이타나, 메세지 전달이 필요할때 변환이 쉽더라.
간단하게 위처럼 XmlElement로 접근이 쉽다.
간단한 설정 데이타나, 메세지 전달이 필요할때 변환이 쉽더라.
'# 2) .Net ( Vs 2005 ) > 기타' 카테고리의 다른 글
PWD 암호화 객체. (0) | 2009.05.08 |
---|---|
인터페이스와델리게이트조합1 (2) | 2009.05.08 |
DB로컬 연결시 문구 (0) | 2009.05.02 |
큐브~ (0) | 2009.05.02 |
DB Connection Factory (0) | 2009.05.01 |