Some of you already know that SharePoint 2003 (and WSS v2) provide a functionnality which convert Office document on HTML page for client which has not Office installed. This function is called HTML Viewer and need to be downloaded as an add-on. Now, if you check on MOSS/WSS v3, you still have the capablity to manage this function (like in SPS 2003). However, the download for HTML Viewer currently available DOESN'T WORK with MOSS/WSS v3. Mainly, this is due to some security issue found after the realease and for some other part for the new code used by MOSS. Actually, the product group doesn't plan to release a newer version of HTML Viewer which can works with MOSS. Seamily, due to a very low usage (counted thanks to the number of download for HTML Viewer) of HTML Viewer in SPS 2003. So, if you plan to use this functionnality, you have to wait for third party or news for the product group. |
Sunday, June 14, 2009
HTML Viewer and MOSS 2007
Monday, March 30, 2009
Implement the Object Model in a Custom Web Part
How to: Implement the Object Model in a Custom Web Part
http://msdn.microsoft.com/en-us/library/ms479215.aspx
Working with List Objects and Collections
http://msdn.microsoft.com/en-us/library/ms460897.aspx
ERROR
The "SimpleWebPart" Web Part appears to be causing a problem. Updates are currently disallowed on GET requests. To allow updates on a GET, set the 'AllowUnsafeUpdates' property on SPWeb
SOLUTION
SPWeb myweb2 = SPControl.GetContextWeb(Context);
myweb2.AllowUnsafeUpdates = true;
ERROR
Request for the permission of type 'Microsoft.SharePoint.Security.SharePointPermission, Microsoft.SharePoint.Security
SOLUTION
<trust level="Full" originUrl="" />
To get the PublicKeyToken
C:\Program Files\Microsoft SDKs\Windows\v6.0A\bin>
sn -T *.dll
Where to Put Webparts
C:\Inetpub\wwwroot\wss\VirtualDirectories\80\bin
The web.config you have to edit to add safeControls
MOSS 2007 Theme