Jigar Desai
My experiments with ASP.net
-
Can Firefox replace IE as the corporate browser?
Biggest obstacle that Firefox faces in becoming number one browser is its ability to woo IT managers to adopt Firefox as the default corporate browser or at least convince them to officially deploy within their organization.
However aggressive adoption of HTML 5 and CSS 3 by Firefox and not so by IE might help Firefox to overcome this last big obstacle, HTML 5 represents the biggest leap forward in HTML standard especially when you consider that the last major update was HTML 4.01 completed in 1999, current proposal of HTML 5 standard will make browser based application a full-fledged application platform.
Microsoft’s hard line stand on HTML 5 standards (we are not going to support it until it becomes standard) and their history of ignoring standards (it took 7-8 years for IE to finally catch up with HTML 4 and CSS 2.1) might prove as the beginning of the end of IE dominance as corporate browser.
JavaScript performance is also going to play big role in future corporate browser selection, rich JavaScript based web application which works perfectly in Firefox are sometime unusable slow in IE because of poor JavaScript performance. Following chart shows browser script performance comparison.
(Browser comparison shamelessly copied from IE blog )
Following are the game changing proposals in HTML 5 which might make web based application as preferred line of business application development platform . -
Hotmail's Annoying Upgrade Your Browser Message.
Any body else is getting following "Upgrade your web browser" message on hotmail? I some time get following "Upgrade your web browser" message on Windows Live Hotmail web site. BTW I always use latest version of Firefox.
-
Create your own light weight IOC container in .NET
-
Need for Light Weight View engine from Microsoft and Evil of Codebehind in ASP.net MVC.
Some how I had an impression in my mind that current version of ViewEngine was just a temporary solution until Asp.Net MVC reaches to Beta stage. It seems now that current version is going to be final at least for V1. If you are like me who do not like ViewPage, then you will have to relay on MVC Contrib for either Brail or NVelocity.
-
Display Live Data In Silverlight Using ObservableCollection and INotifyPropertyChanged
-
Authorization in ASP.Net MVC using XML Configuration.
-
Generic String.Parse Extension Method
After reading this post about missing parses method for nullable integer and possible implementation. I want to share my version of parse method with generic touch.
-
How do I uninstall Silverlight 1.0 SDK Visual Studio 2005 Template?
While trying to uninstall the "Silverlight 1.0 SDK Visual Studio 2005 Template" I got following message.
-
XSLT Transformation in ASP.net MVC framework
In my last post I talked about using a partial view to render hierarchical data, however XSL transformation looks more appropriate for such cases. ASP.Net has XML control which can display XML document using XSL Transformations. I will show you how similar thing can be achieved in ASP.NET MVC Framework.
-
Display hierarchical data in ASP.net MVC framework
I am playing around recently with MVC Framework and as a apart of my experiments I wanted to display hierarchical data. I want to share my finding with you, I hope you will find this interesting and if you are interested you can download source here.