<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>webparts Forum Rss Feed</title><link>http://www.codeplex.com/webparts/Thread/List.aspx</link><description>webparts Forum Rss Description</description><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>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 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>New Post: can videoplayer play asx files? (solved)</title><link>http://webparts.codeplex.com/Thread/View.aspx?ThreadId=76697</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Allready found a solution:&lt;/p&gt;
&lt;p&gt;Quote from &lt;a href="http://forums.silverlight.net/forums/t/2914.aspx"&gt;http://forums.silverlight.net/forums/t/2914.aspx&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;I ran into this problem myself when i installed media server on a box with&amp;nbsp;IIS on it. You can try what i did, go to the Media Services Management Console, select your server and click properties. You'll find control protocol and double click WMS HTTP Server Control Protocol. In the dialog, select to use another port other than 80, since IIS would be using that. In your xaml code you should then modify your URL to include the port number. mms://server:443/path/to/vid or something like that.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;</description><author>hevling</author><pubDate>Wed, 02 Dec 2009 12:58:16 GMT</pubDate><guid isPermaLink="false">New Post: can videoplayer play asx files? (solved) 20091202125816P</guid></item><item><title>New Post: can videoplayer play asx files?</title><link>http://webparts.codeplex.com/Thread/View.aspx?ThreadId=76697</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I can't play asx files with this Silverlight Video Player.&lt;/p&gt;
&lt;p&gt;Are there any hacks or resources so I can play *.asx files (or perhaps windows media services links) for this player?&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thanks!&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/div&gt;</description><author>hevling</author><pubDate>Tue, 01 Dec 2009 15:23:22 GMT</pubDate><guid isPermaLink="false">New Post: can videoplayer play asx files? 20091201032322P</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;Some one can give me the steps to configure video playlist webpart? I can't do it get the error &amp;quot;error accesing video files&amp;quot;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/div&gt;</description><author>jaullo</author><pubDate>Wed, 25 Nov 2009 01:05:02 GMT</pubDate><guid isPermaLink="false">New Post: Configure video playlist 20091125010502A</guid></item><item><title>New Post: Video Player webpart - Loop</title><link>http://webparts.codeplex.com/Thread/View.aspx?ThreadId=68374</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hi Guys is there any easy way to make the videos from the list loop rather than stopping when the last one has been played.&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;&lt;/div&gt;</description><author>tomchip</author><pubDate>Wed, 09 Sep 2009 08:47:21 GMT</pubDate><guid isPermaLink="false">New Post: Video Player webpart - Loop 20090909084721A</guid></item><item><title>New Post: Video Player and Video Playlist</title><link>http://webparts.codeplex.com/Thread/View.aspx?ThreadId=63468</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;The most common problem people have with this is that they don't have encoded their video correctly with Expressin Media Encoder 2.&lt;/p&gt;
&lt;p&gt;Have you checked the screencast? (link in front page).&lt;/p&gt;
&lt;p&gt;We try to create better documentation for next release.&lt;/p&gt;
&lt;p&gt;-Mikko&lt;/p&gt;&lt;/div&gt;</description><author>MikkoSalmi</author><pubDate>Mon, 10 Aug 2009 11:14:45 GMT</pubDate><guid isPermaLink="false">New Post: Video Player and Video Playlist 20090810111445A</guid></item><item><title>New Post: Video Player and Video Playlist</title><link>http://webparts.codeplex.com/Thread/View.aspx?ThreadId=63468</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I have been trying to get this to work all day.&lt;/p&gt;
&lt;p&gt;Is there a specific column name&amp;nbsp;needed within a document library for these to work?&lt;/p&gt;
&lt;p&gt;Does anyone have actual walk through instructions?&lt;/p&gt;&lt;/div&gt;</description><author>neoinbiz</author><pubDate>Fri, 24 Jul 2009 19:01:49 GMT</pubDate><guid isPermaLink="false">New Post: Video Player and Video Playlist 20090724070149P</guid></item><item><title>New Post: Security Error in Rating Webpart</title><link>http://webparts.codeplex.com/Thread/View.aspx?ThreadId=55014</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Dear Mikko:&lt;/p&gt;
&lt;p&gt;when I can found the new version 0.9.6 released with AjaxControlToolkit fixed?&lt;/p&gt;&lt;/div&gt;</description><author>Frederic68</author><pubDate>Tue, 30 Jun 2009 16:31:27 GMT</pubDate><guid isPermaLink="false">New Post: Security Error in Rating Webpart 20090630043127P</guid></item><item><title>New Post: Security Error in Rating Webpart</title><link>http://webparts.codeplex.com/Thread/View.aspx?ThreadId=55014</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I'm looking for the same information :)...&lt;/p&gt;&lt;/div&gt;</description><author>nsagez</author><pubDate>Thu, 25 Jun 2009 15:57:08 GMT</pubDate><guid isPermaLink="false">New Post: Security Error in Rating Webpart 20090625035708P</guid></item><item><title>New Post: Security Error in Rating Webpart</title><link>http://webparts.codeplex.com/Thread/View.aspx?ThreadId=55014</link><description>&lt;div style="line-height: normal;"&gt;&lt;div id="ctl00_ctl00_MasterContent_Content_PostRepeater_ctl32_BodyDiv"&gt;
&lt;p&gt;Dear Mikko:&lt;/p&gt;
&lt;p&gt;Where I can found a little manual about the intallation of AjaxControlToolkit in the GAC and the configuration in the web.config.?&lt;/p&gt;
&lt;/div&gt;&lt;/div&gt;</description><author>Frederic68</author><pubDate>Fri, 12 Jun 2009 16:44:18 GMT</pubDate><guid isPermaLink="false">New Post: Security Error in Rating Webpart 20090612044418P</guid></item><item><title>New Post: Security Error in Rating Webpart</title><link>http://webparts.codeplex.com/Thread/View.aspx?ThreadId=55014</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Dear Mikko:&lt;/p&gt;
&lt;p&gt;Where I can found a little manual about the intallation of AjaxControlToolkit in the GAC and the configuration in the web.config.?&lt;/p&gt;&lt;/div&gt;</description><author>Frederic68</author><pubDate>Mon, 08 Jun 2009 17:11:08 GMT</pubDate><guid isPermaLink="false">New Post: Security Error in Rating Webpart 20090608051108P</guid></item><item><title>New Post: Security Error in Rating Webpart</title><link>http://webparts.codeplex.com/Thread/View.aspx?ThreadId=55014</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hello, Sorry for late response. We have been busy creating the next release.&lt;/p&gt;
&lt;p&gt;You can download the AjaxControlToolkit from web and install it manually to GAC. Also remember to create the SafeControls tag in web.config. The next version of Advanced WebParts does all this automatically, if you can wait for a while.&lt;/p&gt;
&lt;p&gt;We are currently having problems with SharePoint SP2. When these are solved, we will release next version.&lt;/p&gt;&lt;/div&gt;</description><author>MikkoSalmi</author><pubDate>Mon, 01 Jun 2009 08:09:14 GMT</pubDate><guid isPermaLink="false">New Post: Security Error in Rating Webpart 20090601080914A</guid></item><item><title>New Post: Security Error in Rating Webpart</title><link>http://webparts.codeplex.com/Thread/View.aspx?ThreadId=55014</link><description>&lt;div style="line-height: normal;"&gt;&lt;div id="ctl00_ctl00_MasterContent_Content_PostRepeater_ctl26_BodyDiv"&gt;
&lt;p&gt;Dear Mikko:&lt;/p&gt;
&lt;p&gt;How I can Install the last version of AjaxControlToolkit (3.0.30512.17815)&amp;nbsp; in Sharepoint 2007? because I search this information in Codeplex but I can&amp;acute;t found.&lt;/p&gt;
&lt;p&gt;I wait for your response.&lt;/p&gt;
&lt;/div&gt;&lt;/div&gt;</description><author>Frederic68</author><pubDate>Wed, 27 May 2009 21:08:47 GMT</pubDate><guid isPermaLink="false">New Post: Security Error in Rating Webpart 20090527090847P</guid></item><item><title>New Post: Security Error in Rating Webpart</title><link>http://webparts.codeplex.com/Thread/View.aspx?ThreadId=55014</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Dear Mikko:&lt;/p&gt;
&lt;p&gt;How I can Install the last versi&amp;oacute;n of AjaxControlToolkit (3.0.30512.17815)&amp;nbsp; in Sharepoint 2007? because I search this information in Codeplex but I can&amp;acute;t found.&lt;/p&gt;
&lt;p&gt;I wait for your response.&lt;/p&gt;&lt;/div&gt;</description><author>Frederic68</author><pubDate>Mon, 25 May 2009 15:03:08 GMT</pubDate><guid isPermaLink="false">New Post: Security Error in Rating Webpart 20090525030308P</guid></item><item><title>New Post: Security Error in Rating Webpart</title><link>http://webparts.codeplex.com/Thread/View.aspx?ThreadId=55014</link><description>&lt;div style="line-height: normal;"&gt;This discussion has been copied to a work item. Click &lt;a href="http://webparts.codeplex.com/WorkItem/View.aspx?WorkItemId=4033"&gt;here&lt;/a&gt; to go to the work item and continue the discussion.&lt;/div&gt;</description><author>MikkoSalmi</author><pubDate>Wed, 06 May 2009 09:53:36 GMT</pubDate><guid isPermaLink="false">New Post: Security Error in Rating Webpart 20090506095336A</guid></item><item><title>New Post: Security Error in Rating Webpart</title><link>http://webparts.codeplex.com/Thread/View.aspx?ThreadId=55014</link><description>&lt;div style="line-height: normal;"&gt;Hello!&lt;br&gt;
&lt;br&gt;
I checked the current installation package and noticed that for some reason AjaxControlToolkit dll is missing from it. I'll fix this for next 0.9.6 release.&lt;br&gt;
&lt;br&gt;
We try to get 0.9.6. released this week. Thanks to both of you for reporting this bug.&lt;br&gt;
&lt;br&gt;
-Mikko&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;</description><author>MikkoSalmi</author><pubDate>Wed, 06 May 2009 09:51:54 GMT</pubDate><guid isPermaLink="false">New Post: Security Error in Rating Webpart 20090506095154A</guid></item><item><title>New Post: Security Error in Rating Webpart</title><link>http://webparts.codeplex.com/Thread/View.aspx?ThreadId=55014</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Dear Mikko:&lt;/p&gt;
&lt;p&gt;I have the same problem of Stefan, my configuration is the following:&lt;/p&gt;
&lt;p&gt;Windows Server 2003 Service Pack 2&lt;br&gt;
SharePoint Server 2007 SP1&lt;br&gt;
Microsoft .Net Framework 3.5 SP1&lt;br&gt;
Microsoft ASP.NET 2.0 Ajax Extensions 1.0&lt;br&gt;
Silverlight 2.0&lt;br&gt;
&lt;br&gt;
but I can´t install the rating web part, appears the same error of Stefan (in Spanish) and I can't Install the Accordion Navigation, appears the following error:&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Server Error in '/' Application. &lt;hr width="100%" color="#c0c0c0" size=1&gt;
&lt;h2&gt;&lt;i&gt;Could not load file or assembly 'AjaxControlToolkit, Version=3.0.20820.16598, Culture=neutral, PublicKeyToken=28f01b0e84b6d53e' or one of its dependencies. The system cannot find the file specified.&lt;/i&gt; &lt;/h2&gt;
&lt;p&gt;&lt;span style="font-family:arial, helvetica, geneva, sunsans-regular, sans-serif"&gt;&lt;b&gt;Description: &lt;/b&gt;An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. &lt;br&gt;
&lt;br&gt;
&lt;b&gt;Exception Details: &lt;/b&gt;System.IO.FileNotFoundException: Could not load file or assembly 'AjaxControlToolkit, Version=3.0.20820.16598, Culture=neutral, PublicKeyToken=28f01b0e84b6d53e' or one of its dependencies. The system cannot find the file specified.&lt;br&gt;
&lt;br&gt;
&lt;b&gt;Source Error:&lt;/b&gt; &lt;br&gt;
&lt;br&gt;
&lt;table style="background-color:#ffffcc" width="100%"&gt;
    &lt;tbody&gt;
        &lt;tr&gt;
            &lt;td&gt;&lt;code&gt;An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.&lt;/code&gt; &lt;/td&gt;
        &lt;/tr&gt;
    &lt;/tbody&gt;
&lt;/table&gt;
&lt;br&gt;
&lt;b&gt;&lt;span style="font-family:verdana"&gt;Stack Trace:&lt;/span&gt;&lt;/b&gt; &lt;br&gt;
&lt;br&gt;
&lt;table style="background-color:#ffffcc" width="100%"&gt;
    &lt;tbody&gt;
        &lt;tr&gt;
            &lt;td&gt;&lt;code&gt;
            &lt;pre&gt;[FileNotFoundException: Could not load file or assembly 'AjaxControlToolkit, Version=3.0.20820.16598, Culture=neutral, PublicKeyToken=28f01b0e84b6d53e' or one of its dependencies. The system cannot find the file specified.]
   CodePlex.WebParts.AccordionNaviWebPart.CreateChildControls() +0
   System.Web.UI.Control.EnsureChildControls() +87
   System.Web.UI.Control.PreRenderRecursiveInternal() +44
   System.Web.UI.WebControls.WebParts.WebPart.PreRenderRecursiveInternal() +42
   System.Web.UI.Control.PreRenderRecursiveInternal() +171
   System.Web.UI.Control.PreRenderRecursiveInternal() +171
   System.Web.UI.Control.PreRenderRecursiveInternal() +171
   System.Web.UI.Control.PreRenderRecursiveInternal() +171
   System.Web.UI.Control.PreRenderRecursiveInternal() +171
   System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +842
&lt;/pre&gt;
            &lt;/code&gt;&lt;/td&gt;
        &lt;/tr&gt;
    &lt;/tbody&gt;
&lt;/table&gt;
&lt;/span&gt;&lt;/p&gt;
&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;How I can do?&lt;br&gt;
&lt;br&gt;
I wait for your response.&lt;br&gt;
Thanks.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;/div&gt;</description><author>Frederic68</author><pubDate>Tue, 05 May 2009 20:02:12 GMT</pubDate><guid isPermaLink="false">New Post: Security Error in Rating Webpart 20090505080212P</guid></item></channel></rss>