Get Strings From HTML File

pagego

Freshman
Joined
Jan 30, 2003
Messages
27
Location
Milwaukee, WI
I have an HTML file that saves the data from a flexgrid. I want to take that data back from the HTML file (stored as a table) and put it into a flexgrid. I can get the data from strings or an array to the flexgrid, I just can't figure out how to get the data from the HTML file. How do I do this? Thank you in advance for you help.
 
Ick.. :( I assume you're not talking about an ASP.NET page (if you are then try the Page.ViewState property). To be honest, HTML isn't a good place for data. If you wanted to get that info. back you'd need to put together some regular expressions to extract the data, not a fun procedure. I'd suggest using XML instead, which .NET offers a ton of classes for both saving and getting data from.
 
Back
Top