Questions tagged [freetextbox]

FreeTextBox is a WYSIWYG Rich HTML editor control for ASP.NET.

FreeTextBox is a ASP.NET control. It is a WYSIWYG Rich HTML editor.
More information at http://freetextbox.com/

46 questions
5
votes
4 answers

Isn't dangerous if I set ValidateRequest to false?

I'm using FreeTextBox HTML editor in some webforms in my asp.net project . if I do not set ValidateRequest property to false I get this error : A potentially dangerous Request.Form value was detected from the client It's OK in admin folder though…
Mostafa
  • 3,002
  • 10
  • 52
  • 79
4
votes
2 answers

format html in ckeditor if text is in not correct format

I have an old ASP.NET application that uses freetextbox WYSIWYG editor. But it saves a weird html (not particular format of html)into database. <TABLE class=mceVisualAid border=0 width=560 align=center height=395> <TBODY> <TR…
Sundar Singh
  • 654
  • 5
  • 15
3
votes
4 answers

Hidden FreeTextBox bug on Firefox

I have a problem with the FreeTextBox rich Text Editor in my ASP.NET site. The problem occurs when I access the site with firefox, and I have a freetextbox instance in a hidden div. The hidden div might also be an AJAX Tab Panel. The actual problem…
Nikos Steiakakis
  • 5,605
  • 7
  • 44
  • 54
3
votes
5 answers

IE11 - Object reference not set to an instance of an object at FreeTextBox.RenderTabs

I have integrated freetext box with website. It's working well for all browser except recently release IE 11. It throws error "Object reference not set to an instance of an object." Following is the error stack trace: at…
MaheshValu
  • 101
  • 2
  • 10
3
votes
1 answer

FreeTextBox duplicates pasted content

I am using a FreeTextBox:
bokkie
  • 1,477
  • 4
  • 21
  • 40
2
votes
0 answers

freetextbox spellchecking not working in IE

I have an .aspx page and am using the FTB:FreeTextBox control. Seems to be working fine except in conjunction with the jQuery spellchecker. In IE the spell checking is not working in the textbox. Is there something specific that its looking for to…
d3020
  • 537
  • 3
  • 7
  • 16
1
vote
2 answers

FreeTextBox not working on Mac Safari 5.0.5 (6533.21.1)

I have noticed that the pages which contain FreeTextBox are freezing when I click the submit button. (infact any button on the page). Is there anything I can do to get around this problem without having to actually replace all my FTB controls with…
Gadam
  • 2,674
  • 8
  • 37
  • 56
1
vote
1 answer

Disable auto-close HTML tagging in FreeTextBox for ASP.NET

Recently I have run into a bit of a problem with FreeTextBox for ASP.NET. Every time I open a HTML tag in the HTML editor view, if I switch to the design view and come back the tag is automatically closed. This happens when pasting text into the box…
mat
  • 73
  • 5
1
vote
2 answers

asp.net text messed issue

First of all take a look at website www.elcieloessalud.com/Tratamientos.aspx I have built this website for a spanish client of mine, it is built in .net framework 3.5 issue is that i have a cms kind of page that allows me to change text of the…
1
vote
1 answer

FreeTextBox causing permission denied error

I am using a freetextbox control on my asp.net page. It is causing a Permission Denied pop up message, but not always when I am working with the freetextbox directly. Example: I can submit the text from the freetextbox to the database with no…
Starwfanatic
  • 584
  • 2
  • 13
  • 29
1
vote
0 answers

FreeTextBox : Uncaught TypeError: Cannot read property 'length' of null

I am using FreeTextBox and having Error when i am pressing Enter Uncaught TypeError: Cannot read property 'length' of null This issue is coming only on production server but not able to reproduce on my local machine. Google Chrome Version…
Amol
  • 1,431
  • 2
  • 18
  • 32
1
vote
1 answer

FreeTextBox can't load dependency but it works

I am having a bizarre problem. I installed FreeTextBox for my ASP.NET project (WebForms) and I set it all up and its working perfectly, it does what needs to be done. In the solution though, after a few compiles, I get the following error: Error 1…
Lord Relix
  • 922
  • 5
  • 23
  • 50
1
vote
2 answers

Error when check if the text in freetextbox is empty or not

I wonder if somebody else met the problem below with FreeTextBox like I did: I have a FreeTextBox in my aspx page. And the code behind to write the text in FreeTextBox (FTB) into Database: protected void btnWrite_Click(object sender, EventArgs…
vyclarks
  • 854
  • 2
  • 15
  • 39
1
vote
1 answer

IOException: The process cannot access the file 'filename' because it is being used by another process

I have this code in my asp.net project: protected void btnSave_Click(object sender, EventArgs e) { try { using (StreamWriter sw = File.CreateText(Server.MapPath(@"~/AboutUs.txt"))) { …
Majid Basirati
  • 2,665
  • 3
  • 24
  • 46
1
vote
3 answers

Freetextbox and validating requests

I am using freetextbox and have added to the web.config of my app but I still get the following error when submitting text with html: A potentially dangerous Request.Form value was detected from the client (ctl00_MainContent_FreeTextBox1=" I know…
Joe
1
2 3 4