Saturday, June 19, 2010

Google Website Optimizer Fails to Validate ASPDSF Original Page Source File

AspDotNetStorefront Version: 9.0.1.3 ML

Problem:

Google website optimizer fails to validate source file for “original” page.  Variation pages and conversation pages validate ok.

Solution:

View page source generate by Google Chrome does not validate.  Generate page source using FireFox or IE instead.

Friday, June 18, 2010

ASPDNSF Allow <script> Tag in RadEditor Topics

AspDotNetStorefront

Problem:

By default, admin topics not save <script> tags.  The RadEditor strips them out on save.

Solution:

For version 9, update the following file: \Admin\topics.aspx.cs


radDescription.Content = DB.RSFieldByLocale(rs, "Description", pageLocale);
//mod start: Allow script tags in topic content.
radDescription.AllowScripts = true;
//mod end

For version 8, update date the following file: \RadControls\Editor\ConfigFile.xml

<property name="AllowScripts">false</property>

Change to:

<property name="AllowScripts">true</property>