Hi Everyone..
Please tell me the <NoScipt> command how does it work? I thinks this will fix my problem.
Problem. The user can type text in a memo field. But if he uses <b> "<b>" commands it should just show "<b>" and not text in bold
Thanks.
Printable View
Hi Everyone..
Please tell me the <NoScipt> command how does it work? I thinks this will fix my problem.
Problem. The user can type text in a memo field. But if he uses <b> "<b>" commands it should just show "<b>" and not text in bold
Thanks.
If you are talking about ASP you can use server.HTMLEncode
It will appear like this:Code:server.HTMLEncode ( "<b>Greetings</b>' )
And not like thisQuote:
<b>Greetings</b>
Quote:
Greetings
Thanks :)... helps me alot :)