Featured post

c# - Usage of Server Side Controls in MVC Frame work -

i using asp.net 4.0 , mvc 2.0 web application. project requiremrnt have use server side control in application not possibl in noraml case. ideally want use adrotator control , datalist control. i saw few samples , references in codepleax mvc controllib howwver found less useful. can tell how utilize theese controls in asp.net application along mvc. note: please provide functionalities related adrotator , datalist controls not equivalent functionalities thanks in advace. mvc pages not use normal .net solution makes use of normal .net components impossible. a normal .net page use event driven solution call different methods service side mvc use actions , view completly different way handle things. also, mvc not use viewstate normal .net controlls require. found article discussing mixing of normal .net , mvc.

html - AddressBook like Outlook -


i implement sort of addressbook 1 in outlook in following picture

alt text

can markup , style address card?

i made quick example you: can see live here on jsfiddle.net.

html:

<div class="outl-add">     <div class="outl-add-top">        duck, daffy     </div>     <div class="outl-add-left-vert">        &nbsp;     </div>     <div class="outl-add-right-info">         <p class="info-top">         <span class="user-name">daffy duck</span>         <span>acme international</span>         <span>manager</span>         </p>         <p class="address-info"></p>         <span> +122323i9092<span class="grey-text">uiofcio</span>         <p>daffy@acme.org</p>         <p>666, 5th avenue</p>         <p>new york</p>         <p>www.daffysite.com</p>     </div> </div> 

css:

.outl-add {     width: 400px;     border: 1px solid #000; }  .outl-add-top {     height: 25px;     background-color: orange; }  .outl-add-left-vert {     float: left;     height: 200px;     width: 35px;     background-color: #ccc; }  .outl-add-right-info {     height: 200px;     float; left;     background-color: #eee; }  p.info-top {     margin-bottom: 10px; }  p.info-top span {     display: block; }  .user-name {     font-weight: bold; }  .grey-text {     color: #ccc; } 

hope helps out some. if have questions used here, ask them in comments or new question relative problem have :)


Comments

Popular posts from this blog

c# - Usage of Server Side Controls in MVC Frame work -

cocoa - Nesting arrays into NSDictionary object (Objective-C) -

ios - Very simple iPhone App crashes on UILabel settext -