当前位置: 代码迷 >> SharePoint >> sharepoint 来者有分
  详细解决方案

sharepoint 来者有分

热度:147   发布时间:2016-05-02 07:28:16.0
sharepoint 请教高手 在线等 来者有分
本帖最后由 UnStopable 于 2012-11-07 15:02:26 编辑
问题1:sharepoint  怎么加  在线人数统计和人数浏览统计....
问题2:多行文本 怎么直接添加图片进去

注:我们的系统是sharepoint  2007.。。

------解决方案--------------------
Find Number of Users Currently Logged on to a SharePoint Site

http://blog.furuknap.net/find-number-of-users-currently-logged-on-to-a-sharepoint-site
------解决方案--------------------
问题2: 多行文本貌似是不可以直接添加图片的,用Rich textbox
When creating custom content types inside your features or site definitions you need to specify field definitions to define your custom fields. I was trying to create a Enhanced Rich Text field within my Content Type but was struggling to find the right XML.
 
Eventually I found out you need to include the RichText=”TRUE” and RichTextMode=”FullHtml” attributes within your field definition as shown below:
 
<Field
 
    ID=”{8A2EA652-DDCB-4bf7-84EE-129E7B7A5403}”
     Name=”ArticleBody”
     Group=”Reuters columns”
     DisplayName=”Article Body”
     Type=”Note”
     Sealed=”FALSE”
     ReadOnly=”FALSE”
     Hidden=”FALSE”
     RichText=”TRUE”
     RichTextMode=”FullHtml”
     DisplaceOnUpgrade=”TRUE” />

------解决方案--------------------
用富文本框
------解决方案--------------------
问题2用这个开源的Webpart: http://spcurrentusers.codeplex.com/
  相关解决方案