Get The Value Of An ASP TextBox Element With An HTMLEditorExtendor Attached, Using JavaScript
I am having an odd issue. I have a textbox with an ajaxToolkit HtmlEditorExtender attached to it. I need to get the text that is put in this textbox using javascript. I have a simp
Solution 1:
".Value" and ".Text" are ASP.NET control properties, not Javascript element properties. You need to use ".value".
Post a Comment for "Get The Value Of An ASP TextBox Element With An HTMLEditorExtendor Attached, Using JavaScript"