how to get html table contents to a database using c#
i have created a page ,as soon as it gets loaded a html table will be displayed .When the values of it will be entered ,we need to store it back at the database.How can it done using c# and .net,Html table is at client side(it is loaded using xml and xsl transformations)so htmltable control cant be used,please answer if any knows
Master BillaPosted Sep 16, 2009, 10:46 AM
One more easy way
WebClient client = new WebClient();
String htmlCode = client.DownloadString("http://born2code.net");
thank you
Master BillaPosted Sep 16, 2009, 10:46 AM
You can use the html parser to this
http://www.codeproject.com/KB/cs/TagBasedHtmlParser.aspx
thank you