Ny på SharePoint och tänkte höra om något vet något ang kopplingar mot exchange. Hej Riktigt bra tips där, Göran!Koppling mot exchange
Vet att det kommer webparts med till exchange till kalender, inbox och to-do.
finns det även en koppling mot resurshanteringen? Om inte, finns det möjlighet att bygga en sådan koppling och hur komplicerat skulle ni säga att det är?Sv: Koppling mot exchange
Ett utklipp från min kommande bok "Beginning SharePoint Administration" (tyvärr utan formattering eftersom det inte går att få här!) - OBS att exemplet nedan förutsätter engelska namn på Outlook foldrarna ("Inbox"); du får byta ut det mot "Inkorg" om du har svenska foldernamn. Vad den säger är att CEWP kan användas till att läsa valfri Outlook folder i Exchange servern
Mvh Göran
Content Editor Web Part
This web part, also known as the CEWP, will display text, HTML code, or the content of a file. For example, you can use the rich text editor in this web part to display static text, such as an instruction or help text. If you copy a formatted text from a Word-file it will retain its formatting when pasted into this editor. This editor also allows you to enter pictures and tables.
This web part also allows you to enter HTML or Jscript code; this opens a lot of opportunities, and you can do practically everything that is possible with HML and Jscript. For example, to open the current users mailbox within a team site you could paste this code into the CEWP “Source Editor”:
<object classid="clsid:0006F063-0000-0000-C000-000000000046"
id="ViewCtlFolder" width="100%" height="200" codetype="application/x-oleobject"
codebase="http://activex.microsoft.com/activex/controls/office/outlctlx.CAB#ver=9,0,0,3203"
border="0">
<param name="Namespace" value="MAPI">
<param name="Folder" value="//Inbox">
<param name="Restriction" value="">
<param name="DeferUpdate" value="0">
</object>
If you instead want to display the content of the public folder “Sales” you would change the “Folder” line to this:
<param name="Folder" value="//Public Folders/All Public Folders/SalesSv:Koppling mot exchange
Följdfråga: på den gamla goda Office 2000-tiden fanns det funktionella begränsningar när man använde OWC-kontrollerna utanför Outlook, t ex på en webbsida. Är det fortfarande så, eller har man lättat på det?
/Johan