Hi helper,
I'm using <textarea> tag to insert a query
string to use it for a database report.
It works well as long as I dont use Enter key.
Without using Enter key in the textarea I get:
String = "Select * from TableName"
Writing this string in the textarea and using EnterKey I get:
String = "Select *fromTableName"
(I pressed the Enter Key after "*" and after "from".
This query that I get doesnt allow me to create a resultset.
How can I insert spaces after pressing the Enter Key?
Please advise
Thanks
Jo