|
|
Binding
data from XML file into an ASP.NET page
You can
bind data from an xml file to an asp.net page. ASP.Net has classes and
methods that make this possible without much effort on your part. To
work with data binding you have to import the namespace System.Data.
This is done by using the @ import directive at the top of the page.
It would be something like,
_______________________________________________
_______________________________________________
<%@
Import Namespace="System.Data" %>
The next
step is to create a new Dataset and use the ReadXml method to read the
xml file. This is usually done in the Page_Load event. This is done
when the page is loaded for the first time and hence it is better to
check that condition with Page.IsPostBack.
To bind
data to any control first create that control with an id. Now for that
id set the property of DataSource to that of the DataSet that you have
created. Similarly you can set the DataValueField and the DataTextField
and then use the DataBind() method of that control to bind the data
to that control. There are many sample code for this routine in the
internet.
posted by Eugenia Loli-Queru on Mon 19th Nov 2001 19:44 UTC (New Mobile Computing) Today, OSNews features an interview with Zac Woodall, software design Engineer at Office Data and Developer Services at Microsoft Corporation . Zac, who is also a frequent OSNews reader, talks about the new Office, .NET, WindowsXP, NTFS and how it compares to BFS filesystem, the GPL & open source movement and much more. posted by Eugenia Loli-Queru on Wed 20th Feb 2002 18:45 UTC (OS News) A lot of people have trouble understanding what .NET really is and what its goals are. Mostly because Microsoft has done a good job of confusing everybody using terms that are not self-explanatory or with terms that mean more that one thing. Related Articles (New Mobile Computing) Here's the only recent and still valid book for Mono: " Mono: A Developer's Notebook " by Edd Dumbill and Niel M. Bornstein. The book is under O'Reilly's "notebook" series, which are meant to be books mainly consisted by notes. Here's our quick review.
FREE
Subscription
Subscribe to our mailing list and receive new articles
through email. Keep yourself updated with latest
developments in the industry.
Note
: We never rent, trade, or sell my email lists to
anyone.
We assure that your privacy is respected
and protected.
_______________________________________
Recommended
XML Books
|
|
| FREE
Subscription Stay
Current With the Latest Technology Developments Realted to XML. Signup for Our
Newsletter and Receive
New Articles Through Email. Note
: We never rent, trade, or sell our email lists to anyone. We assure that
your privacy is respected and protected.
|
|