Click here to Skip to main content
15,891,431 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
fixing width of an particular column in repeater control asp.net
Posted
Updated 25-Nov-12 22:20pm
v2
Comments
DaveAuld 26-Nov-12 4:20am    
And the problem is? what have you tried?

1 solution

We can fix the width by fixing TR and TD width, example

XML
<table>
            <tr style="border-width: 1px; width: 650px; border-color: Black;">
                <td width="350px" height="50px">
                    <asp:TextBox ID="txtFirstName" runat="server" Text='<%# Eval("FirstName") %>' ToolTip='<%# Eval("FirstName") %>'
                        Enabled="true" ReadOnly="true" BorderStyle="None" Width="100px" Height="50px"
                        Font-Bold="True" ForeColor="#000099"></asp:TextBox>
                </td>
            </tr>
        </table>
 
Share this answer
 
Comments
satpal 2 26-Nov-12 6:47am    
thanks i have done similar way by fixing it in all <th> in header and content template in repeater :)

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