| Author: shakti singh tanwar 13 May 2008 | Member Level: Diamond | Rating: Points: 2 |
Please paste the complete page code so that we might have a better idea about the problem
|
| Author: qqqqqqqqq 13 May 2008 | Member Level: Bronze | Rating: Points: 2 |
<table width="100%"> <tr> <td style="width:70%"> <asp:Label ID=lblDestinazione runat=server Text="<%$ Resources:MarketAnalysis, lblDestinazione %>"></asp:Label><br /> <asp:TextBox id="txtDescrizioneUIAssociata" TextMode="MultiLine" Wrap="true" runat="server" MaxLength="50" Width="70%"></asp:TextBox> <asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ControlToValidate="txtDescrizioneUIAssociata" ErrorMessage="<%$ Resources:MarketAnalysis,DescriptionRequired%>"><img src="../Data/images/excl.gif" /></asp:RequiredFieldValidator> </td> <td style="width:30%"> </td> </tr> </table>
|
| Author: MuthuKumar 13 May 2008 | Member Level: Silver | Rating: Points: 2 |
don't set the value as % in width. bcoz if u give 70% it will take the width of 70% from the page width. for ex if u give 1000px as page width, the textbox width will be 750px. so always give the width in px format like 100px.
|
| Author: qqqqqqqqq 13 May 2008 | Member Level: Bronze | Rating: Points: 2 |
thank you very much for you help now its working properly.
|