<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>Advanced WebParts</title><link>http://webparts.codeplex.com/project/feeds/rss</link><description>Project to create web parts for SharePoint with AJAX and&amp;#47;or Silverlight functionality.</description><item><title>Source code checked in, #69631</title><link>http://webparts.codeplex.com/SourceControl/changeset/changes/69631</link><description>Upgrade&amp;#58; New Version of LabDefaultTemplate.xaml. To upgrade your build definitions, please visit the following link&amp;#58; http&amp;#58;&amp;#47;&amp;#47;go.microsoft.com&amp;#47;fwlink&amp;#47;&amp;#63;LinkId&amp;#61;254563</description><author>Project Collection Service Accounts</author><pubDate>Mon, 01 Oct 2012 21:13:48 GMT</pubDate><guid isPermaLink="false">Source code checked in, #69631 20121001091348P</guid></item><item><title>Source code checked in, #69630</title><link>http://webparts.codeplex.com/SourceControl/changeset/changes/69630</link><description>Checked in by server upgrade</description><author>Project Collection Service Accounts</author><pubDate>Mon, 01 Oct 2012 21:07:03 GMT</pubDate><guid isPermaLink="false">Source code checked in, #69630 20121001090703P</guid></item><item><title>New Post: Forcing the download of a SharePoint Document</title><link>http://webparts.codeplex.com/discussions/247621</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Hi!&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I have created a web part using code suggested in this web site&lt;/p&gt;
&lt;p&gt;&lt;a href="http://vspug.com/jscott/2008/12/19/forcing-the-download-of-a-sharepoint-document/"&gt;http://vspug.com/jscott/2008/12/19/forcing-the-download-of-a-sharepoint-document/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;The web part works fine. It forced to download the file and save it at destination location. But there is one problem and here it is. We are using a fillable PDF Version 9 Form. The Web Part download this file and save it at a destination location. But tis
 file is always corrupted. When we try to open the file it does not open and get the message it is corrupted. So during the downloading process the file is corrupted. This happened with Fillable PDF version 9 file. However other older PDF files have no problem.
 My Web Part code is listed below. Any help to resolve this issue will be highly appreciated. Thanks in advance. Tayyab&lt;/p&gt;
&lt;p&gt;private void DownloadFile(string fileName)&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; try&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; string path = System.Web.HttpContext.Current.Server.MapPath(fileName);&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; string name = System.IO.Path.GetFileName(path);&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Microsoft.SharePoint.SPFile spFile =&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Microsoft.SharePoint.SPContext.Current.Web.GetFile(fileName);&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Page.Response.ClearHeaders();&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Page.Response.ClearContent();&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Page.Response.ContentType = &amp;quot;application/pdf&amp;quot;;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Page.Response.AppendHeader(&amp;quot;Content-Disposition&amp;quot;, &amp;quot;attachment; filename=&amp;quot; &amp;#43; name.ToString());&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; byte[] bFile = spFile.OpenBinary(SPOpenBinaryOptions.SkipVirusScan);&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Page.Response.OutputStream.Write(bFile, 0, bFile.Length);&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Page.Response.Flush();&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; System.Web.HttpContext.Current.ApplicationInstance.CompleteRequest();&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
 }&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; catch (Exception ex)&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Page.Response.Write(&amp;quot;Message: &amp;quot;);&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Page.Response.Write(&amp;quot;&amp;lt;br/&amp;gt;&amp;quot;);&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Page.Response.Write(ex.Message);&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Page.Response.Write(&amp;quot;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&amp;quot;);&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Page.Response.Write(&amp;quot;StackTrace: &amp;quot;);&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Page.Response.Write(&amp;quot;&amp;lt;br/&amp;gt;&amp;quot;);&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Page.Response.Write(ex.StackTrace);&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Page.Response.End();&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/p&gt;
&lt;p&gt;PS: One funny thing if I add this code to the page using SharePoint Designer it works fine.&lt;/p&gt;
&lt;/div&gt;</description><author>trana</author><pubDate>Fri, 25 Feb 2011 20:57:34 GMT</pubDate><guid isPermaLink="false">New Post: Forcing the download of a SharePoint Document 20110225085734P</guid></item><item><title>New Post: Fail to install highlight.wsp</title><link>http://webparts.codeplex.com/Thread/View.aspx?ThreadId=221488</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;hi Stephane&lt;/p&gt;
&lt;div&gt;I got an error message during activate the feature.&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;&amp;quot;Failed to find the XML file at location  '12\Template\Features\AdvancedWebParts-0-9-5\feature.xml&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;appreciate if you can help.&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;thanks&lt;/div&gt;
&lt;table border=0 cellspacing=0 cellpadding=0 width=32 height=1&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td width=145 align=left valign=top&gt;&lt;/td&gt;
&lt;td width=346 align=left valign=top&gt;&lt;a title="More information about Stephane Eyskens" href="http://www.softpedia.com/developer/Stephane-Eyskens-53539.html"&gt;&lt;strong&gt;&lt;br&gt;&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;</description><author>ken_lam</author><pubDate>Tue, 27 Jul 2010 02:56:53 GMT</pubDate><guid isPermaLink="false">New Post: Fail to install highlight.wsp 20100727025653A</guid></item><item><title>Source code checked in, #48968</title><link>http://webparts.codeplex.com/SourceControl/changeset/changes/48968</link><description>Checked in by server upgrade</description><author>_TFSSERVICE</author><pubDate>Thu, 22 Jul 2010 18:55:41 GMT</pubDate><guid isPermaLink="false">Source code checked in, #48968 20100722065541P</guid></item><item><title>Source code checked in, #46380</title><link>http://webparts.codeplex.com/SourceControl/changeset/changes/46380</link><description></description><author>MikkoSalmi</author><pubDate>Mon, 31 May 2010 12:05:33 GMT</pubDate><guid isPermaLink="false">Source code checked in, #46380 20100531120533P</guid></item><item><title>Source code checked in, #46379</title><link>http://webparts.codeplex.com/SourceControl/changeset/changes/46379</link><description></description><author>MikkoSalmi</author><pubDate>Mon, 31 May 2010 12:04:50 GMT</pubDate><guid isPermaLink="false">Source code checked in, #46379 20100531120450P</guid></item><item><title>Source code checked in, #45907</title><link>http://webparts.codeplex.com/SourceControl/changeset/changes/45907</link><description></description><author>MikkoSalmi</author><pubDate>Sun, 23 May 2010 17:50:39 GMT</pubDate><guid isPermaLink="false">Source code checked in, #45907 20100523055039P</guid></item><item><title>Reviewed: Advanced WebParts 0.9.5 (Apr 21, 2010)</title><link>http://webparts.codeplex.com/releases/view/18776#ReviewBy-tward3017</link><description>Rated 2 Stars &amp;#40;out of 5&amp;#41; - Getting file not found after deployment of solution</description><author>tward3017</author><pubDate>Wed, 21 Apr 2010 21:20:17 GMT</pubDate><guid isPermaLink="false">Reviewed: Advanced WebParts 0.9.5 (Apr 21, 2010) 20100421092017P</guid></item><item><title>New Post: Configure video playlist</title><link>http://webparts.codeplex.com/Thread/View.aspx?ThreadId=76143</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Check the references of the libraries. Make sure both libraries (Video, Video thumbnails) do exist!&lt;/p&gt;
&lt;p&gt;To make sure name them Video and Video Thumbnails, those are the default values.&lt;/p&gt;&lt;/div&gt;</description><author>hevling</author><pubDate>Tue, 20 Apr 2010 09:58:41 GMT</pubDate><guid isPermaLink="false">New Post: Configure video playlist 20100420095841A</guid></item><item><title>New Comment on "RatingWebPart"</title><link>http://webparts.codeplex.com/wikipage?title=RatingWebPart&amp;ANCHOR#C15532</link><description>sorry.. .net 3.5 cannot be selected to any app pool &amp;#58;&amp;#40;</description><author>MaoT</author><pubDate>Mon, 19 Apr 2010 13:21:34 GMT</pubDate><guid isPermaLink="false">New Comment on "RatingWebPart" 20100419012134P</guid></item><item><title>New Comment on "RatingWebPart"</title><link>http://webparts.codeplex.com/wikipage?title=RatingWebPart&amp;ANCHOR#C15531</link><description>Heya,&amp;#10;&amp;#10;  I was so glad to get that rating webpart... but when i deployed the wsp i was not able to add the webpart to the page &amp;#58;&amp;#40; it gave me back an error&amp;#58; &amp;#10;------------&amp;#10;Unable to add selected webpart&amp;#40;s&amp;#41;.&amp;#10;Page rating&amp;#58; A web part or web form Control on this page cannot be diplayed or imported. The type could not be found or it is not registered as safe.&amp;#10;-----------------&amp;#10;&amp;#10;I checked, the webpart safe registration is in the webconfig file. &amp;#10;&amp;#10;i chacked the application pool which has the .net Framework ersion v2.0 but the .Net3.5 with SP1 is installed. .Net framework cannot be selected for any application pool &amp;#40;Windows Server 2008 x64 with SP1&amp;#41;&amp;#10;&amp;#10;any suggestions&amp;#63; &amp;#58;&amp;#41; &amp;#10;&amp;#10;thanks in advance, Adam</description><author>MaoT</author><pubDate>Mon, 19 Apr 2010 13:20:25 GMT</pubDate><guid isPermaLink="false">New Comment on "RatingWebPart" 20100419012025P</guid></item><item><title>Created Issue: "error accesing video files" [6258]</title><link>http://webparts.codeplex.com/WorkItem/View.aspx?WorkItemId=6258</link><description>Hello,&lt;br /&gt;      I get this error when I add the video playlist webpart. I am working on WSS 3.0, I have created a document library and uploaded few .wmv files to it. Could anyone please reply to this issue.&lt;br /&gt;&lt;br /&gt;Thanks&lt;br /&gt;</description><author>sharepointnext</author><pubDate>Thu, 01 Apr 2010 23:01:17 GMT</pubDate><guid isPermaLink="false">Created Issue: "error accesing video files" [6258] 20100401110117P</guid></item><item><title>New Post: Configure video playlist</title><link>http://webparts.codeplex.com/Thread/View.aspx?ThreadId=76143</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I am having the same problem. Does anyone have a solution?&lt;/p&gt;&lt;/div&gt;</description><author>sharepointnext</author><pubDate>Thu, 01 Apr 2010 19:35:44 GMT</pubDate><guid isPermaLink="false">New Post: Configure video playlist 20100401073544P</guid></item><item><title>Updated Wiki: Home</title><link>http://webparts.codeplex.com/wikipage?version=44</link><description>&lt;div class="wikidoc"&gt;&lt;a href="http&amp;#58;&amp;#47;&amp;#47;www.brinkhill.com"&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=webparts&amp;DownloadId=109440" alt="Sponsored&amp;#32;by&amp;#32;Brinkhill" title="Sponsored&amp;#32;by&amp;#32;Brinkhill" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;h1&gt;Advanced WebParts&lt;/h1&gt;
Project to create web parts for SharePoint with AJAX and/or Silverlight functionality. Currently in beta but we are close to first production quality release.&lt;br /&gt;
&lt;h2&gt;Update!&lt;/h2&gt;There is a bug in current 0.9.5 release, that causes AccordionNavi and Page Rating not loading correctly. We are working on this issue and try to release new version as soon as possible. The bug is related to AjaxControlToolkit.dll, which is not properly included in our installation package. We apologize for the inconvenience.&lt;br /&gt;
&lt;h2&gt;New version 0.9.5 released&lt;/h2&gt;New Video Playlist web part.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webparts.codeplex.com/wikipage?title=AccordionNaviWebPart&amp;referringTitle=Home"&gt;AccordionNaviWebPart&lt;/a&gt;&lt;br /&gt;Replaces standard QuickLaunch navigation with accordion from AJAX Toolkit.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webparts.codeplex.com/wikipage?title=RatingWebPart&amp;referringTitle=Home"&gt;RatingWebPart&lt;/a&gt;&lt;br /&gt;Rate pages with 1 to 5 stars. Also you can give optional feedback.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webparts.codeplex.com/wikipage?title=SlideshowWebPart&amp;referringTitle=Home"&gt;SlideshowWebPart&lt;/a&gt;&lt;br /&gt;Displays images from Picture Library in Silverlight Slideshow.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webparts.codeplex.com/wikipage?title=TickerWebPart&amp;referringTitle=Home"&gt;TickerWebPart&lt;/a&gt;&lt;br /&gt;Displays content from list in up-down scrolling javascript ticker.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webparts.codeplex.com/wikipage?title=VideoPlayerWebPart&amp;referringTitle=Home"&gt;VideoPlayerWebPart&lt;/a&gt;&lt;br /&gt;Display Silverlight streaming video from document library.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webparts.codeplex.com/wikipage?title=VideoPlaylistWebPart&amp;referringTitle=Home"&gt;VideoPlaylistWebPart&lt;/a&gt;&lt;br /&gt;Display playlist with video files from document library.&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>MikkoSalmi</author><pubDate>Thu, 04 Mar 2010 21:58:09 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20100304095809P</guid></item><item><title>Updated Wiki: Home</title><link>http://webparts.codeplex.com/wikipage?version=43</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Advanced WebParts&lt;/h1&gt;
&lt;a href="http&amp;#58;&amp;#47;&amp;#47;www.brinkhill.com"&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=webparts&amp;DownloadId=109440" alt="Sponsored&amp;#32;by&amp;#32;Brinkhill" title="Sponsored&amp;#32;by&amp;#32;Brinkhill" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Project to create web parts for SharePoint with AJAX and/or Silverlight functionality. Currently in beta but we are close to first production quality release.&lt;br /&gt;
&lt;h2&gt;Update!&lt;/h2&gt;There is a bug in current 0.9.5 release, that causes AccordionNavi and Page Rating not loading correctly. We are working on this issue and try to release new version as soon as possible. The bug is related to AjaxControlToolkit.dll, which is not properly included in our installation package. We apologize for the inconvenience.&lt;br /&gt;
&lt;h2&gt;New version 0.9.5 released&lt;/h2&gt;New Video Playlist web part.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webparts.codeplex.com/wikipage?title=AccordionNaviWebPart&amp;referringTitle=Home"&gt;AccordionNaviWebPart&lt;/a&gt;&lt;br /&gt;Replaces standard QuickLaunch navigation with accordion from AJAX Toolkit.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webparts.codeplex.com/wikipage?title=RatingWebPart&amp;referringTitle=Home"&gt;RatingWebPart&lt;/a&gt;&lt;br /&gt;Rate pages with 1 to 5 stars. Also you can give optional feedback.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webparts.codeplex.com/wikipage?title=SlideshowWebPart&amp;referringTitle=Home"&gt;SlideshowWebPart&lt;/a&gt;&lt;br /&gt;Displays images from Picture Library in Silverlight Slideshow.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webparts.codeplex.com/wikipage?title=TickerWebPart&amp;referringTitle=Home"&gt;TickerWebPart&lt;/a&gt;&lt;br /&gt;Displays content from list in up-down scrolling javascript ticker.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webparts.codeplex.com/wikipage?title=VideoPlayerWebPart&amp;referringTitle=Home"&gt;VideoPlayerWebPart&lt;/a&gt;&lt;br /&gt;Display Silverlight streaming video from document library.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webparts.codeplex.com/wikipage?title=VideoPlaylistWebPart&amp;referringTitle=Home"&gt;VideoPlaylistWebPart&lt;/a&gt;&lt;br /&gt;Display playlist with video files from document library.&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>MikkoSalmi</author><pubDate>Thu, 04 Mar 2010 21:57:20 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20100304095720P</guid></item><item><title>Updated Wiki: Home</title><link>http://webparts.codeplex.com/wikipage?version=42</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Advanced WebParts&lt;/h1&gt;
&lt;a href="http&amp;#58;&amp;#47;&amp;#47;www.brinkhill.com"&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=webparts&amp;DownloadId=109440" alt="Sponsored&amp;#32;by&amp;#32;Brinkhill" title="Sponsored&amp;#32;by&amp;#32;Brinkhill" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Project to create web parts for SharePoint with AJAX and/or Silverlight functionality. Currently in beta but we are close to first production quality release.&lt;br /&gt;
&lt;h2&gt;Update!&lt;/h2&gt;There is a bug in current 0.9.5 release, that causes AccordionNavi and Page Rating not loading correctly. We are working on this issue and try to release new version as soon as possible. The bug is related to AjaxControlToolkit.dll, which is not properly included in our installation package. We apologize for the inconvenience.&lt;br /&gt;
&lt;h2&gt;New version 0.9.5 released&lt;/h2&gt;New Video Playlist web part.&lt;br /&gt;
&lt;h2&gt;Video Sharing &amp;amp; SharePoint&lt;/h2&gt;New screencast released. View &lt;a href="http://7dimensionc.web701.discountasp.net/sivustot/awpdemo/default.html" class="externalLink"&gt;here&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webparts.codeplex.com/wikipage?title=AccordionNaviWebPart&amp;referringTitle=Home"&gt;AccordionNaviWebPart&lt;/a&gt;&lt;br /&gt;Replaces standard QuickLaunch navigation with accordion from AJAX Toolkit.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webparts.codeplex.com/wikipage?title=RatingWebPart&amp;referringTitle=Home"&gt;RatingWebPart&lt;/a&gt;&lt;br /&gt;Rate pages with 1 to 5 stars. Also you can give optional feedback.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webparts.codeplex.com/wikipage?title=SlideshowWebPart&amp;referringTitle=Home"&gt;SlideshowWebPart&lt;/a&gt;&lt;br /&gt;Displays images from Picture Library in Silverlight Slideshow.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webparts.codeplex.com/wikipage?title=TickerWebPart&amp;referringTitle=Home"&gt;TickerWebPart&lt;/a&gt;&lt;br /&gt;Displays content from list in up-down scrolling javascript ticker.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webparts.codeplex.com/wikipage?title=VideoPlayerWebPart&amp;referringTitle=Home"&gt;VideoPlayerWebPart&lt;/a&gt;&lt;br /&gt;Display Silverlight streaming video from document library.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webparts.codeplex.com/wikipage?title=VideoPlaylistWebPart&amp;referringTitle=Home"&gt;VideoPlaylistWebPart&lt;/a&gt;&lt;br /&gt;Display playlist with video files from document library.&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>MikkoSalmi</author><pubDate>Thu, 04 Mar 2010 21:56:41 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20100304095641P</guid></item><item><title>Updated Wiki: Home</title><link>http://webparts.codeplex.com/wikipage?version=41</link><description>&lt;div class="wikidoc"&gt;!Advanced WebParts&lt;br /&gt;&lt;br /&gt;&lt;a href="http&amp;#58;&amp;#47;&amp;#47;www.brinkhill.com"&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=webparts&amp;DownloadId=109440" alt="Sponsored&amp;#32;by&amp;#32;Brinkhill" title="Sponsored&amp;#32;by&amp;#32;Brinkhill" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Project to create web parts for SharePoint with AJAX and/or Silverlight functionality. Currently in beta but we are close to first production quality release.&lt;br /&gt;
&lt;h2&gt;Update!&lt;/h2&gt;There is a bug in current 0.9.5 release, that causes AccordionNavi and Page Rating not loading correctly. We are working on this issue and try to release new version as soon as possible. The bug is related to AjaxControlToolkit.dll, which is not properly included in our installation package. We apologize for the inconvenience.&lt;br /&gt;
&lt;h2&gt;New version 0.9.5 released&lt;/h2&gt;New Video Playlist web part.&lt;br /&gt;
&lt;h2&gt;Video Sharing &amp;amp; SharePoint&lt;/h2&gt;New screencast released. View &lt;a href="http://7dimensionc.web701.discountasp.net/sivustot/awpdemo/default.html" class="externalLink"&gt;here&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webparts.codeplex.com/wikipage?title=AccordionNaviWebPart&amp;referringTitle=Home"&gt;AccordionNaviWebPart&lt;/a&gt;&lt;br /&gt;Replaces standard QuickLaunch navigation with accordion from AJAX Toolkit.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webparts.codeplex.com/wikipage?title=RatingWebPart&amp;referringTitle=Home"&gt;RatingWebPart&lt;/a&gt;&lt;br /&gt;Rate pages with 1 to 5 stars. Also you can give optional feedback.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webparts.codeplex.com/wikipage?title=SlideshowWebPart&amp;referringTitle=Home"&gt;SlideshowWebPart&lt;/a&gt;&lt;br /&gt;Displays images from Picture Library in Silverlight Slideshow.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webparts.codeplex.com/wikipage?title=TickerWebPart&amp;referringTitle=Home"&gt;TickerWebPart&lt;/a&gt;&lt;br /&gt;Displays content from list in up-down scrolling javascript ticker.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webparts.codeplex.com/wikipage?title=VideoPlayerWebPart&amp;referringTitle=Home"&gt;VideoPlayerWebPart&lt;/a&gt;&lt;br /&gt;Display Silverlight streaming video from document library.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webparts.codeplex.com/wikipage?title=VideoPlaylistWebPart&amp;referringTitle=Home"&gt;VideoPlaylistWebPart&lt;/a&gt;&lt;br /&gt;Display playlist with video files from document library.&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>MikkoSalmi</author><pubDate>Thu, 04 Mar 2010 21:56:31 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20100304095631P</guid></item><item><title>Updated Wiki: Home</title><link>http://webparts.codeplex.com/wikipage?version=40</link><description>&lt;div class="wikidoc"&gt;&lt;table&gt;&lt;tr&gt;&lt;th&gt; !Advanced WebParts &lt;/th&gt;&lt;th&gt; &lt;a href="http&amp;#58;&amp;#47;&amp;#47;www.brinkhill.com"&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=webparts&amp;DownloadId=109440" alt="Sponsored&amp;#32;by&amp;#32;Brinkhill" title="Sponsored&amp;#32;by&amp;#32;Brinkhill" /&gt;&lt;/a&gt;&lt;/th&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;Project to create web parts for SharePoint with AJAX and/or Silverlight functionality. Currently in beta but we are close to first production quality release.&lt;br /&gt;
&lt;h2&gt;Update!&lt;/h2&gt;There is a bug in current 0.9.5 release, that causes AccordionNavi and Page Rating not loading correctly. We are working on this issue and try to release new version as soon as possible. The bug is related to AjaxControlToolkit.dll, which is not properly included in our installation package. We apologize for the inconvenience.&lt;br /&gt;
&lt;h2&gt;New version 0.9.5 released&lt;/h2&gt;New Video Playlist web part.&lt;br /&gt;
&lt;h2&gt;Video Sharing &amp;amp; SharePoint&lt;/h2&gt;New screencast released. View &lt;a href="http://7dimensionc.web701.discountasp.net/sivustot/awpdemo/default.html" class="externalLink"&gt;here&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webparts.codeplex.com/wikipage?title=AccordionNaviWebPart&amp;referringTitle=Home"&gt;AccordionNaviWebPart&lt;/a&gt;&lt;br /&gt;Replaces standard QuickLaunch navigation with accordion from AJAX Toolkit.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webparts.codeplex.com/wikipage?title=RatingWebPart&amp;referringTitle=Home"&gt;RatingWebPart&lt;/a&gt;&lt;br /&gt;Rate pages with 1 to 5 stars. Also you can give optional feedback.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webparts.codeplex.com/wikipage?title=SlideshowWebPart&amp;referringTitle=Home"&gt;SlideshowWebPart&lt;/a&gt;&lt;br /&gt;Displays images from Picture Library in Silverlight Slideshow.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webparts.codeplex.com/wikipage?title=TickerWebPart&amp;referringTitle=Home"&gt;TickerWebPart&lt;/a&gt;&lt;br /&gt;Displays content from list in up-down scrolling javascript ticker.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webparts.codeplex.com/wikipage?title=VideoPlayerWebPart&amp;referringTitle=Home"&gt;VideoPlayerWebPart&lt;/a&gt;&lt;br /&gt;Display Silverlight streaming video from document library.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webparts.codeplex.com/wikipage?title=VideoPlaylistWebPart&amp;referringTitle=Home"&gt;VideoPlaylistWebPart&lt;/a&gt;&lt;br /&gt;Display playlist with video files from document library.&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>MikkoSalmi</author><pubDate>Thu, 04 Mar 2010 21:56:05 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20100304095605P</guid></item><item><title>Updated Wiki: Home</title><link>http://webparts.codeplex.com/wikipage?version=39</link><description>&lt;div class="wikidoc"&gt;&lt;table&gt;&lt;tr&gt;&lt;th&gt; ! Advanced WebParts &lt;/th&gt;&lt;th&gt; &lt;a href="http&amp;#58;&amp;#47;&amp;#47;www.brinkhill.com"&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=webparts&amp;DownloadId=109440" alt="Sponsored&amp;#32;by&amp;#32;Brinkhill" title="Sponsored&amp;#32;by&amp;#32;Brinkhill" /&gt;&lt;/a&gt;&lt;/th&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;Project to create web parts for SharePoint with AJAX and/or Silverlight functionality. Currently in beta but we are close to first production quality release.&lt;br /&gt;
&lt;h2&gt;Update!&lt;/h2&gt;There is a bug in current 0.9.5 release, that causes AccordionNavi and Page Rating not loading correctly. We are working on this issue and try to release new version as soon as possible. The bug is related to AjaxControlToolkit.dll, which is not properly included in our installation package. We apologize for the inconvenience.&lt;br /&gt;
&lt;h2&gt;New version 0.9.5 released&lt;/h2&gt;New Video Playlist web part.&lt;br /&gt;
&lt;h2&gt;Video Sharing &amp;amp; SharePoint&lt;/h2&gt;New screencast released. View &lt;a href="http://7dimensionc.web701.discountasp.net/sivustot/awpdemo/default.html" class="externalLink"&gt;here&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webparts.codeplex.com/wikipage?title=AccordionNaviWebPart&amp;referringTitle=Home"&gt;AccordionNaviWebPart&lt;/a&gt;&lt;br /&gt;Replaces standard QuickLaunch navigation with accordion from AJAX Toolkit.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webparts.codeplex.com/wikipage?title=RatingWebPart&amp;referringTitle=Home"&gt;RatingWebPart&lt;/a&gt;&lt;br /&gt;Rate pages with 1 to 5 stars. Also you can give optional feedback.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webparts.codeplex.com/wikipage?title=SlideshowWebPart&amp;referringTitle=Home"&gt;SlideshowWebPart&lt;/a&gt;&lt;br /&gt;Displays images from Picture Library in Silverlight Slideshow.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webparts.codeplex.com/wikipage?title=TickerWebPart&amp;referringTitle=Home"&gt;TickerWebPart&lt;/a&gt;&lt;br /&gt;Displays content from list in up-down scrolling javascript ticker.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webparts.codeplex.com/wikipage?title=VideoPlayerWebPart&amp;referringTitle=Home"&gt;VideoPlayerWebPart&lt;/a&gt;&lt;br /&gt;Display Silverlight streaming video from document library.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webparts.codeplex.com/wikipage?title=VideoPlaylistWebPart&amp;referringTitle=Home"&gt;VideoPlaylistWebPart&lt;/a&gt;&lt;br /&gt;Display playlist with video files from document library.&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>MikkoSalmi</author><pubDate>Thu, 04 Mar 2010 21:55:25 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20100304095525P</guid></item></channel></rss>