Introduction:-
In this article , I have explained how to disable resizable
properties of textbox in asp.net.
Take a textbox on design page and set this property style
like
style="resize:none"
Example:-
<asp:TextBox ID="TextBox1"
runat="server"
TextMode="MultiLine"
style="resize:none"></asp:TextBox>
You can also done by using CSS .
<style type="text/css">
textarea
{
resize:none;
}
</style>
No comments:
Post a Comment
Note: only a member of this blog may post a comment.