Friday, January 14, 2011

System.Web.UI.WebControls.Menu css definition problem

If use .Items.Clear() to clear up menu collection, 
will lost css definition in  StaticItemTemplate

IIS Express support SSL in development environment

IIS Express supports SSL. The setup program will install a default, self-signed server certificate in the machine store and configure ports 44300-44399 for use with SSL. You can also set up and configure custom SSL certificates for your websites as an administrator.



Wednesday, January 12, 2011

How to deal with "The underlying provider failed on Open" in Entity Framework

Please use using statement to include your access to Object Context:


            using (var ctx = new Entities())
            {
                ....
            }
Provides a convenient syntax that ensures the correct use of IDisposable objects.

How to set auto-width for dropdownlist in IE by JQuery

<select onmousedown="if($.browser.msie){this.style.position='absolute';this.style.width='auto'}" onblur="this.style.position='';this.style.width=''">