How Can i Show a list Vertically in ASP.net C# Using DataGrid Or DataList View? -


i don't know possible or not, way want have list in vertically view in asp.net page. example normal grid/list :

the normal datagrid in asp.net

but want grid/list :

vertical datagrid

sorry use previous image in rotate view, believe experts can figure mean out.

attention:i not want text show vertically picture.i want position of field vertical example picture.

so please me.and let me use knowledges thank evry one.

you can of css. add new css class aur include these in current css class gridview :

 .box_rotate {  -moz-transform: rotate(270deg);  /* ff3.5+ */    -o-transform: rotate(270deg);  /* opera 10.5 */   -webkit-transform: rotate(270deg);  /* saf3.1+, chrome */              filter:  progid:dximagetransform.microsoft.basicimage(rotation=270);  /* ie6,ie7 */          -ms-filter: "progid:dximagetransform.microsoft.basicimage(rotation=270)"; /* ie8 */ } 

set padding , margins after rotation.


Comments

Popular posts from this blog

c++ - CryptStringToBinary API behavior -

c++ - Correct method for redrawing a layered window -

java.util.scanner - How to read and add only numbers to array from a text file -