if yes..please suggest me with sample example..
how to store text of text area to database
hi sir........is it possible to store text of text area into database?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.

Jignesh TrivediPosted Jun 25, 2013, 2:20 AM
hi,
yes it is possible to store text area 's text into data base.
this is same as store text box value in to data base. but for same you have to fix string length and according to this you have fix length of filed in database.
if you are SQL2005 and above user than you can also use Varchar(max).
hope this will help you.
Iftikar HussainPosted Jun 25, 2013, 1:17 AM
Yes, it is possible to store it. Please refer below example where I am saving Employee details in database.
I will be storing Employee First Name, Last Name and Address (which is a textarea)
In .aspx page
In code behind (.aspx.cs)
protected void BtnSave_Click(object sender, EventArgs e)
Regards,
Iftikar
Please let me know if you need more information.
Remember to click "Mark as Answer" on the post, if it helps you.