[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: WebParts



> Anybody know what these are?
> See:
>   http://www.dotnetwire.com/syndication/

Yes, a web part is an XML file.  The idea being the Outlook client 
and/or a server interface on Exchange can read a part and do 
something with it.  The web part mentioned here is:

<?xml version="1.0"?>
<WebPart xmlns="urn:schemas-microsoft-com:webpart:">
  <Title>.netWire News Headlines</Title>
  <Description>.netWire Headlines of .NET resources</Description>
  <Content><![CDATA[<script language="javascript" 
src="http://www.dotnetwire.com/newsfeed/";></script>]]></Content>

  <AllowMinimize>1</AllowMinimize>
  <AllowRemove>1</AllowRemove>
  <CacheBehavior>AllUsers</CacheBehavior>
  <CacheTimeout>60</CacheTimeout>
  <DetailLink>http://www.dotnetwire.com/syndication/</DetailLink>
  <FrameState>Normal</FrameState>
  <HasFrame>1</HasFrame>
  <LastModified>Mon, 30 Apr 2001 00:00:00 GMT</LastModified>
  <Namespace>dotnetwire</Namespace>
  <PartOrder>1</PartOrder>
  <PartStorage></PartStorage>
  <Zone>Center</Zone>
</WebPart>

Basically just a redirect of sorts to the web page.  The Digital 
Dashboard Resource Kit 3.0 has all the docs on the creation and use 
of these and other things.  It's *very* cool.

-Bill Kearney