テキスト ボックスの幅を MaxLength プロパティと等しくなるように制限する方法はありますか? 私の場合、テキスト ボックス コントロールは、次のスニペットのようにテーブル セルに配置されます。
<td class=TDSmallerBold style="width:90%">
<asp:textbox id="txtTitle" runat="server"
CausesValidation="true"
Text="Type a title here..be concise but descriptive. Include price."
ToolTip="Describe the item with a short pithy title (most important keywords first). Include the price. The title you provide here will be the primary text found by search engines that index Zipeee content."
MaxLength="60"
Width="100%">
</asp:textbox>
(レイアウトを制御するために HTML テーブルを使用すべきではないことはわかっています..確かに別の主題です)しかし、実際の幅を、入力されたボックスで許可されている最大文字数に制限する方法はありますか?