GDocsOpen - Open, Edit and Save DOC and XLS files directly from Windows using Google Docs

General configuration

The registering of the YUIAsp.Net control suite can be done either in the web.config file, making them available to all pages in the web site/web application, or in a specific page you're planning on using the controls.

If you're planning to use our YUIAsp.Net controls in several pages, you might want to register them in web.config.

If you use it inside a single page, you might want to register it only in that page.

		<@ Register Assembly="YUIAspNet" Namespace="YUIAspNet" TagPrefix="yui" %>
	

Configuration properties

  • EnableEmbeddedSkin - Enables/disables the embedded skins for the control. Set to false if you want to use your own skin. You can disable embedded skins globally in the website by putting the appSetting key YUIAspNet.EnableEmbeddedSkins to false.
  • EnableEmbeddedScripts - Enables/disables embedded scripts. Set this flag to false if you want to use your custom scripts. In this case, you'll be in charge of script registration. You can disable embedded scripts globally for the website by setting in your site's web.config the appSetting key YUIAspNet.EnableEmbeddedScripts to false.
  • EnableAnimation - If set to true, will include the YUI animation script(animation.js). Note that if you have several YUI controls on the page, by setting in your site's web.config the the appSetting key EnableAnimation to one of the control will set EnableAnimation for all, since by including the script, the animation is triggered.
  • LoadScriptMode - Sets to load mode of the YUI scripts. If the value is "Minimized", the minimized version of the scripts will be loaded, which is the best for production websites. If you are debugging the scripts, you'll need to set the LoadScriptMode to "Debug", for scripts formatted for best reading, including comments, or to "Normal" for scripts without comments. You can set the load mode globally using the "YUIAspNet.LoadScriptMode" appSetting key in web.config. Possible values are: Debug, Minimized, Normal.