RICHTEXT CONTROL? - ASP.NET / AJAX
-
Hi Guys, Do you have any idea if where can I download a richtext server control for asp.net? Because, in AJAX when using a simple textbox it produce an error if that value contains _, ,
, etc. Or do you have some ideas on how to save the formatted paragraph from a simple textbox into the msssql2000 database? Thanks in advance Guys hifiger2004
_
-
Hi Guys, Do you have any idea if where can I download a richtext server control for asp.net? Because, in AJAX when using a simple textbox it produce an error if that value contains _, ,
, etc. Or do you have some ideas on how to save the formatted paragraph from a simple textbox into the msssql2000 database? Thanks in advance Guys hifiger2004
_
It depends if you want to pay for this or not. Here is an article that shows how to create your own (assuming you have the time) http://aspalliance.com/1092\_Rich\_Text\_Editor\_Part\_I
-
It depends if you want to pay for this or not. Here is an article that shows how to create your own (assuming you have the time) http://aspalliance.com/1092\_Rich\_Text\_Editor\_Part\_I
Hi toticow, I will try this one. But where am I going to stored the hamHtmlEditor.ascx? Under what directory of ASP.Net framework? Does it appear on my Visual Web Developer Toolbox?
hifiger2004
-
Hi Guys, Do you have any idea if where can I download a richtext server control for asp.net? Because, in AJAX when using a simple textbox it produce an error if that value contains _, ,
, etc. Or do you have some ideas on how to save the formatted paragraph from a simple textbox into the msssql2000 database? Thanks in advance Guys hifiger2004
_
-
Hi toticow, I will try this one. But where am I going to stored the hamHtmlEditor.ascx? Under what directory of ASP.Net framework? Does it appear on my Visual Web Developer Toolbox?
hifiger2004
Hi, well this is a user control, so you would add it to your existing solution - perhaps a subfolder in your application called UserControls. As you are asking a question like this, I must assume you are fairly new to asp.net - perhaps reading this will help you:
-
Hi Guys, Do you have any idea if where can I download a richtext server control for asp.net? Because, in AJAX when using a simple textbox it produce an error if that value contains _, ,
, etc. Or do you have some ideas on how to save the formatted paragraph from a simple textbox into the msssql2000 database? Thanks in advance Guys hifiger2004
_
I've run into the same issue wuth AJAX, specifically when using JSON - as a workaround, I did a Server.URLEncode at the server end, and then a javascript unescape() followed by a global replace of "+" chars....seems to work quite nicely...
"Now I guess I'll sit back and watch people misinterpret what I just said......" Christian Graus At The Soapbox
-
Hi badgrs, I already solved my problem regarding the html tag. At the very top of my aspx I added the validaterequest="false" inside the directives, and it is working fine now. Thanks for the support :)
hifiger2004
-
I've run into the same issue wuth AJAX, specifically when using JSON - as a workaround, I did a Server.URLEncode at the server end, and then a javascript unescape() followed by a global replace of "+" chars....seems to work quite nicely...
"Now I guess I'll sit back and watch people misinterpret what I just said......" Christian Graus At The Soapbox
Hi RichardGrimmer, I already solved my problem regarding the html tag. At the very top of my aspx I added the validaterequest="false" inside the directives, and it is working fine now. Thanks for the support :)
hifiger2004
-
Hi, well this is a user control, so you would add it to your existing solution - perhaps a subfolder in your application called UserControls. As you are asking a question like this, I must assume you are fairly new to asp.net - perhaps reading this will help you:
Hi toticow, I already solved my problem regarding the html tag. At the very top of my aspx I added the validaterequest="false" inside the directives, and it is working fine now. Thanks for the support :)
hifiger2004
-
Hi toticow, I already solved my problem regarding the html tag. At the very top of my aspx I added the validaterequest="false" inside the directives, and it is working fine now. Thanks for the support :)
hifiger2004
Hello I see your original question changed. Rather than turning off the validation at the top of the page as you do, you could also use the Server.HtmlEncode method For more information, read this: http://www.asp.net/faq/RequestValidation.aspx[^]