hello Sir,
I am just add some textarea value to database.but it generate error like unhandle string..this will come only when i put this string------------
(A secured <a class=’vardana12’ href=’http://www.deal-explorer.co.uk’>Loans</a> is any loan that requires the borrower to offer the lender with a number of form of safety.)
is any prob is this string...
plz tell me ASAP

i think problem is in A secured <a class=’vardana12’ href=’http://www.deal-explorer.co.uk’>Loans</a>
mwrisner
Shira
amleth
Can you use Server.HtmlEncode method on the textarea value before you save it to the database.
E.g. string valueToSubmit = Server.HtmlEncode(txt1.Text);
Hope this helps.