user1256789
user1256789

Reputation: 131

column borders in asp.net table controls

I am new to asp.net and using it to create a form. I have a table control, in which I need to put visible borders only between columns. I dont need the border anywhere else. Is there a way to do this and if yes, how?

thanks in advance

Upvotes: 0

Views: 456

Answers (2)

Marek
Marek

Reputation: 11

You can do css and set borders colors but easier is just with simple format like in ms word. Tick whole column and go to format -> boders and shading there is everything you need.

Upvotes: 0

KodeKreachor
KodeKreachor

Reputation: 8882

I would assign a css class to your table cells that had definitions for border-left and border-right set to the color and thickness you'd like.

Upvotes: 1

Related Questions