Categories:
.NET (961)
C (387)
C++ (185)
CSS (84)
DBA (8)
General (31)
HTML (48)
Java (641)
JavaScript (220)
JSP (109)
JUnit (31)
MySQL (297)
Networking (10)
Oracle (562)
Perl (48)
Perl (9)
PHP (259)
PL/SQL (140)
RSS (51)
Software QA (28)
SQL Server (5)
Struts (20)
Unix (2)
Windows (3)
XHTML (199)
XML (59)
Other Resources:
Explain simple Walk through of XmlReader
Explain simple Walk through of XmlReader ?
✍: Guest
In this section we will do a simple walkthrough of how to use the XmlReader class.
Sample for the same is available in both languages (C# and VB.NET) which you can find
in WindowsApplicationXMLVBNET and WindowsApplicationCSharp folders. Task
is to load TestingXML.XML file and display its data in a message box. You can find
TestingXML.XML file in BIN directory of both the folders. Below is the display of
TestingXML.XML file and its content.
Both the projects have command button CmdLoadXML which has the logic to load the
XML file and display the data in messagebox. I have pasted only the CmdLoadXML
command button logic for simplicity. Following are the basic steps done:
Declared the XMLTextReader object and gave the XML filename to load the
XML data.
Read the XMLTextReader object until it has data and concatenate the data in a
temporary string.
Finally display the same in a message box.
Same holds true for C# code as shown below.
2007-10-31, 7295👍, 0💬
Popular Posts:
What Happens If the UPDATE Subquery Returns Multiple Rows? - Oracle DBA FAQ - Understanding SQL DML ...
How many types of validation controls are provided by ASP.NET ? There are six main types of validati...
What will be printed as the result of the operation below: main() { int x=10, y=15; x = x++; y = ++y...
How can you enable automatic paging in DataGrid ? Following are the points to be done in order to en...
Do events have return type ? No, events do not have return type.