Assausyhels
New Member
A normal asp.net textbox will remember your old inputs - if you type something into a textbox and leave the page then come back, and type the same thing. The textbox will "auto complete" what you are typing by suggesting what you typed the last time. I can see that if you set the Textmode property to "multiline" the textbox then loses it's auto complete. Like this:\[code\]<asp:TextBox ID="TextBox_Description" TextMode="MultiLine" MaxLength="500" runat="server"></asp:TextBox>\[/code\]How do I add this funcitonality to my multiline asp Textbox or a TextArea? (multiline textboxes are rendered as textareas).I am open to both asp.net specific solutions and javascript/jquery solutions.