Click here to Skip to main content
15,899,935 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How can display the grid lines in DataGrideView control in asp.net
I want create our own style ie add colum in our style
Posted

Hi,
You can use inline style like:
ASP.NET
<asp:gridview bordercolor="Gray" borderstyle="Solid" forecolor="Transparent" gridlines="Horizontal" xmlns:asp="#unknown" /> 


Custom RowStyle class is as follows:
HTML
<rowstyle cssclass="gridViewRow" />


CSS
.gridViewRow{
border-bottom-color: gray;
background-color: white;
border-bottom-style: solid;
font-size: 11pt;
color: black;
font-family: Tahoma;
}
 
Share this answer
 
 
Share this answer
 

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



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900