Get Strings From HTML File

pagego

Active member
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 cant 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 youre not talking about an ASP.NET page (if you are then try the Page.ViewState property). To be honest, HTML isnt a good place for data. If you wanted to get that info. back youd need to put together some regular expressions to extract the data, not a fun procedure. Id suggest using XML instead, which .NET offers a ton of classes for both saving and getting data from.
 
Back
Top