I have the following control in my custom module_Edit.aspx
<textarea id="txtTwitterWidgetCode" runat="server" title="" ></textarea>
In this field the client pastes his generated twitter widget code.
The problem is that DW removes double quotes when saving custom module settings.
I used reflector to inspect the dw code if there is a work around.
But it looks like this is not possible because of the following source code:
public static string Form2XML ....
....
text = Strings.Replace(text, "\"", "", 1, -1, CompareMethod.Binary);
This line of code is always replacing the double quotes from my custom module settings.
Anyone know the resolution or workaround to this problem ?