Click here to Skip to main content
15,895,746 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello,
A........... (10)
AB.......... (20)
ABC......... (30)
ABCD........ (40)
ABCDE....... (50)
ABCDEF...... (60)
ABCEDFG..... (70)
AB.......... (80)
BCDE........ (90)

I want to show the design as above in aspx page. I have used table, row and column. But i can not get correct design.
I am getting the design like
A...... (10)
AB...... (10)
ABC...... (20) etc

How to do?

Thanks
Posted
Updated 29-Dec-11 20:57pm
v2
Comments
Sandeep Mewara 30-Dec-11 2:57am    
The presentation looks similar with an extra dot which can be countered and reduced every new row. Whats the difference or issue?

Use   for space, you can't do anything except this.
If you have any problem just you can add comment for my answer. if you accept my answer then rate this.
 
Share this answer
 
Comments
Sandeep Mewara 30-Dec-11 2:57am    
I am not sure on how space is helping here. Further, the presentation looks similar with an extra dot which can be countered and reduced every new row.
use different columns for this and set the width of each column.
HTML
<table>
<tr>
<td style="width:10%">A</td>
<td style="width:2%">......</td>
<td style="width:10%">(10)</td>
</tr>
</table>

and so on...
and set width of column according to your design page.
Hope this will help you.
Don't forget to mark as answer if it helps. :)
 
Share this answer
 
Comments
Member 7684075 30-Dec-11 4:12am    
I dont want create a separate column for each. Because this value i am getting from db and i am going to bind in grid view. In gridview i am creating my own template. there i want to display the value like what i mentioned above.

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