Dear All,
we have developed ASP .Net application. Now i need the same app in HTML.
i have used ajax controls and ASP .Net webservices for that.
Now how can i migrate to HTML5.
& i have used VS2008 for that. Is this IDE is sufficient to do migration
Can anybody tell me the couple of solutions.?
Loading

Jaish MathewsPosted May 31, 2012, 5:14 AM
It's now not a fancy thing. ASP.NET now ships with ASP.NET MVC 4 application templates, which make it easy to integrate HTML5 into Web Forms and previous versions of ASP.NET MVC.
Don't under estimate it as some attributes as we have objects too which can be used in JS like one named "Modernizr" which is useful to track that whether your browser will support any specific HTML5 features like below
if (Modernizr.geolocation)
{
//Do geolocation code
}
if (Modernizr.webworkers)
{
//Do something
}
So don't stop here. Please have a look at http://msdn.microsoft.com/en-us/magazine/jj129609.aspx