http://www.codeplex.com/htmlagilitypack
HtmlDocument doc = new HtmlDocument();
doc.LoadHtml(@"<html><body><p><table id=""foo""><tr><th>hello</th></tr><tr><td>world</td></tr></table></body></html>");
foreach (HtmlNode table in doc.DocumentNode.SelectNodes("//table")) {
Console.WriteLine("Found: " + table.Id);
foreach (HtmlNode row in table.SelectNodes("tr")) {
Console.WriteLine("row");
foreach (HtmlNode cell in row.SelectNodes("th|td")) {
Console.WriteLine("cell: " + cell.InnerText);
}
}
}
Wednesday, November 14, 2012
CDN for jquery UI themes
http://stackoverflow.com/questions/1348559/are-there-hosted-jquery-ui-themes-anywhere
base: Google CDN, Microsoft CDN
black-tie: Google CDN, Microsoft CDN
blitzer: Google CDN, Microsoft CDN
cupertino: Google CDN, Microsoft CDN
dark-hive: Google CDN, Microsoft CDN
dot-luv: Google CDN, Microsoft CDN
eggplant: Google CDN, Microsoft CDN
excite-bike: Google CDN, Microsoft CDN
flick: Google CDN, Microsoft CDN
hot-sneaks: Google CDN, Microsoft CDN
humanity: Google CDN, Microsoft CDN
le-frog: Google CDN, Microsoft CDN
mint-choc: Google CDN, Microsoft CDN
overcast: Google CDN, Microsoft CDN
pepper-grinder: Google CDN, Microsoft CDN
redmond: Google CDN, Microsoft CDN
smoothness: Google CDN, Microsoft CDN
south-street: Google CDN, Microsoft CDN
start: Google CDN, Microsoft CDN
sunny: Google CDN, Microsoft CDN
swanky-purse: Google CDN, Microsoft CDN
trontastic: Google CDN, Microsoft CDN
ui-darkness: Google CDN, Microsoft CDN
ui-lightness: Google CDN, Microsoft CDN
vader: Google CDN, Microsoft CDN
How to solve problem, jQuery UI datepicker not working in IE9?
http://rayaspnet.blogspot.ca/2011/12/how-to-avoid-quirks-mode-in-ie.html
Put this line into the first place
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
</head>
or set this meta tag in IIS server into HTTP response headers.
Reference:
How to avoid compatibility view and quirk mode in IE?
Put this line into the first place
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
</head>
or set this meta tag in IIS server into HTTP response headers.
Reference:
How to avoid compatibility view and quirk mode in IE?
Synchronizing webpages across devices with SignalR
http://lostechies.com/erichexter/2012/10/30/synchronizing-webpages-across-devices-home-automation/
Subscribe to:
Posts (Atom)