I have a question about the behavior of the RadEditor control.
We a page in our website that contains a RadEditor
control. This page is on two different
servers representing two different environments. Test environment and Production
Environment. The page is the same page
in both environments.
Here is the quandary, the RadEditor control is behaving
differently on the two servers.
In the test Environment if I type the following into the
control:
Test
Test
Test
Test
And then look at the HTML I see:
Test<br />
Test<br />
Test<br />
Test<br />
As I would expect.
However in the Production Environment if I type
Test
Test
Test
Test
Then look at the HTML I see:
<p>Test </p>
<p>Test </p>
<p>Test </p>
<p>Test </p>
I am at a loss as to why the behavior is so different. Is there some configuration that could be
different between the servers / environments?
Why would the control behave differently like this?
Thanks for your help.
Gary Graham