
May 7th, 2004, 03:02 PM
|
|
Registered User
|
|
Join Date: Mar 2004
Posts: 3
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
? Pulling data from simple XML file into html/asp/asp.net file
Simple question - just trying to find the easiest solution. I am trying to display some data from an XML file into my ASP (or ASP.Net if need be) web page. The XML file is very simple, and I only need four static elements.
<data>
<final>
<one>1443</one>
<two>4223</two>
<three>452</three>
<four>2221</four>
</final>
</data>
On the web page, i'm just wanting to drop it in as text via <span> or whatever.
The XML structure never changes, and I need just those four elements displayed on my page. I'm not sure the best, least complicated way to connect to the file and display the data to be universally readable - not just in IE browser.
Thanks!
|