I have a problem where the string being returned by
server side : MarkingEditor.content
client side : var edcon = $find("<%= MarkingEditor.ClientID %>").get_html(true);
if the content is say
abc <font size=6>xyz</font>
server side has quotes so the returned string is "abc <font size='6'>xyz</font>"
client side no quotes the returned string is "abc <font size=6>xyz</font>"
When pasting from word quotes and hyphens are also different - server code : code 150, client : code 8211 (– being a hypen)
I have diabled all content filters
This is the case even thought the editors content is set from the database witht he server side values, when posting back different ?
HOW CAN I GET BOTH SIDES TO RETURN THE SAME VALUE (which is important for reason i will not go into here)
Using Q1 2010 RadControl AJAX
server side : MarkingEditor.content
client side : var edcon = $find("<%= MarkingEditor.ClientID %>").get_html(true);
if the content is say
abc <font size=6>xyz</font>
server side has quotes so the returned string is "abc <font size='6'>xyz</font>"
client side no quotes the returned string is "abc <font size=6>xyz</font>"
When pasting from word quotes and hyphens are also different - server code : code 150, client : code 8211 (– being a hypen)
I have diabled all content filters
This is the case even thought the editors content is set from the database witht he server side values, when posting back different ?
HOW CAN I GET BOTH SIDES TO RETURN THE SAME VALUE (which is important for reason i will not go into here)
Using Q1 2010 RadControl AJAX