Monday, December 19, 2011

how to apply CSS class to MVCcontrib grid

In Razor view:
@Html.Grid(
...
    ).Attributes(@class => "ContribGrid")

In css file:
.ContribGrid th
{
   background: red;
}

ASP.NET MVC 4 Developer Preview: What’s New

http://www.sitepoint.com/asp-net-mvc-4-developer-preview-whats-new/

Thursday, December 15, 2011

How to avoid Quirks mode in IE

Put this line in the first place
<head>
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
</head>


Reference:
How to avoid compatibility view and quirk mode in IE?

Put specific HTML standard in DOCTYPE tag
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">  






Display Modes in ASP.NET MVC 4 Developer Preview

http://www.sitepoint.com/asp-net-mvc-4-developer-preview-display-modes/