Click here to Skip to main content
15,886,110 members
Articles / Web Development / ASP.NET

EntityUI Automatic UI Generator using CodeFirst Approach

Rate me:
Please Sign up or sign in to vote.
4.21/5 (5 votes)
7 May 2013CPOL4 min read 34.9K   613   11  
Automatic UI Generator with two-way binding for ASP.NET Forms from an object using Code First Principals
/*********************************************
Input Section
*********************************************/

.EUI_InputRow 
{
    
    padding-bottom: 2px;
    margin-bottom: 3px
}

.EUI_Label 
{
	float: left;
	width: 130px;	    
    display: block;
    line-height: 20px;
    vertical-align: middle;
    margin-right: 5px
}


.EUI_Control 
{
    line-height: 20px;
    
}

.EUI_Button
{
    width: auto;
    height: 22px;
    border: none;
    border: 1px silver solid;
    font-size: 11px;
    color: #333333;
    padding: 3px 4px 3px 4px;
    margin: 5px 10px 8px 3px;
}

.EUI_Button:hover
{
    cursor: pointer;
    text-decoration: underline;
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
United States United States
My area of expertise is developing management database systems for business so that they can efficiently store and lookup existing customer's information and related data, and be able to generate various reports. My goal is to always deliver innovative design and a user friendly interface.

Comments and Discussions