Hello everyone.
I implemented ajax editor control on a page in my web project. it is implimented that after finishing writing,editing whatever i will be able to save the content into database. this can also be retrieved anytime.
The implementation is alright and also i can retrieve the data back. The Problem I am having is that. it seems that on every save button click to save the content to database it saves the content but with an EXTRA LINE Spacing on every line spacing already present.
example it should save:
Hello World,<br/> This is a test content<br/>
But instead it saved
Hello World,<br/><br/> This is a test content<br/><br/>
on every save click it increases the "<br/>" the line spacing.
Can anyone help me out?
This is not the only issue;
also the varient type is not saved correctly
for example all datas saved are always in lower case. why this?
please someone should help