Monday, June 6, 2011

What is overflow in CSS?


The CSS property Overflow can be used when displaying content. It regulates the scrollbars.

You can use 4 variables in the element overflow, namely auto, hidden, scroll and visible.
Auto will automatically add a scrollbar when needed.
Hidden will not show a scrollbar, but ‘hide’ the content that usually expand the box.
Scroll will always add a scrollbar.
The value visible will not expand the div, but will just display all the content without changing the div’s height

How to disable scrolling bars for iframe?


How to disable scrolling bars for iframe?


    <div style="overflow:hidden;" >
            <iframe></iframe>
    </div>

Demo for EF 4.1 Code First in ASP.NET MVC 3

EFMVC – A demo web app using ASP.NET MVC 3 and EF 4.1 Code First - Shiju Varghese's Blog

Dependency Injection With ASP.NET HttpModules

Dependency Injection With ASP.NET HttpModules