Hi, i have a web forms page where the user enters text in a html text area, and the text area autosizes (expands) as more text is entered.
This is on the logged in user's account page.
What I've noticed, is that if I don't provide any user parameter - i.e. the url is mysite.com/Account - then the textarea autosize works fine. However if I provide a parameter - i.e. the url is mysite.com/Account/username then the autosize won't work.
if it helps, i'm using Microsoft.AspNet.FriendlyUrls
i have verified that the exact same behaviour occurs both for html text area, and asp.net textbox - they will autosize if there is no parameter, and if there is a parameter then they won't
this is the html for the textarea
<textarea class='animated' runat="server" id="txaQuote" placeholder="Enter Quote"></textarea>
the autosize function is called on pageLoad()
Go to the complete details ...