<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://dotnetslackers.com/Community/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Haissam [MCAD] - All Comments</title><link>http://dotnetslackers.com/Community/blogs/haissam/default.aspx</link><description>Posting Technical problems/solutions through out my personal experience</description><dc:language>en</dc:language><generator>CommunityServer 2007.1 SP1 (Build: 30415.43)</generator><item><title>Synthroid.</title><link>http://dotnetslackers.com/Community/blogs/haissam/archive/2008/09/25/redirect-to-error-page-when-maximum-request-length-is-exceeded-fileupload.aspx#37328</link><pubDate>Mon, 14 Nov 2011 17:04:54 GMT</pubDate><guid isPermaLink="false">6afe0437-14b4-41d5-bc66-6d54a24dbd48:37328</guid><dc:creator>Synthroid 225 mg.</dc:creator><description>&lt;p&gt;Synthroid. What is synthroid made of. Buy synthroid online without prescription.&lt;/p&gt;
&lt;img src="http://dotnetslackers.com/Community/aggbug.aspx?PostID=37328" width="1" height="1"&gt;</description></item><item><title>File Upload &amp;laquo; Petr Kotal&amp;#039;s C# blog</title><link>http://dotnetslackers.com/Community/blogs/haissam/archive/2008/09/25/redirect-to-error-page-when-maximum-request-length-is-exceeded-fileupload.aspx#37229</link><pubDate>Fri, 30 Sep 2011 11:34:14 GMT</pubDate><guid isPermaLink="false">6afe0437-14b4-41d5-bc66-6d54a24dbd48:37229</guid><dc:creator>File Upload « Petr Kotal's C# blog</dc:creator><description>&lt;p&gt;Pingback from &amp;nbsp;File Upload &amp;laquo; Petr Kotal&amp;#039;s C# blog&lt;/p&gt;
&lt;img src="http://dotnetslackers.com/Community/aggbug.aspx?PostID=37229" width="1" height="1"&gt;</description></item><item><title>How to Upload 100MB file? - Programmers Goodies</title><link>http://dotnetslackers.com/Community/blogs/haissam/archive/2008/09/12/upload-large-files-in-asp-net-using-httpmodule.aspx#37227</link><pubDate>Thu, 29 Sep 2011 07:06:09 GMT</pubDate><guid isPermaLink="false">6afe0437-14b4-41d5-bc66-6d54a24dbd48:37227</guid><dc:creator>How to Upload 100MB file? - Programmers Goodies</dc:creator><description>&lt;p&gt;Pingback from &amp;nbsp;How to Upload 100MB file? - Programmers Goodies&lt;/p&gt;
&lt;img src="http://dotnetslackers.com/Community/aggbug.aspx?PostID=37227" width="1" height="1"&gt;</description></item><item><title>re: Convert PDF to SWF in ASP.NET</title><link>http://dotnetslackers.com/Community/blogs/haissam/archive/2008/03/14/convert-pdf-to-swf-in-asp-net.aspx#37213</link><pubDate>Mon, 19 Sep 2011 18:05:08 GMT</pubDate><guid isPermaLink="false">6afe0437-14b4-41d5-bc66-6d54a24dbd48:37213</guid><dc:creator>kmlos</dc:creator><description>&lt;p&gt;Me podrian ayudar en decirme cual es el error&lt;/p&gt;
&lt;p&gt; int numPagina = 1;&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; string cadena_archivo = &amp;quot;~/App_Data/11-Creating an Action.pdf&amp;quot;;&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;System.Diagnostics.Process p = new System.Diagnostics.Process ();&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;p.StartInfo.UseShellExecute = false;&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;p.StartInfo.RedirectStandardOutput = true;&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;p.StartInfo.CreateNoWindow = true;&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;p.StartInfo.RedirectStandardError = true;&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;p.StartInfo.WorkingDirectory =Server.MapPath (&amp;quot;~&amp;quot;);&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;p.StartInfo.FileName = (@&amp;quot;C:\swftools\pdf2swf.exe&amp;quot;);&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;p.StartInfo.Arguments = &amp;quot;-F&amp;quot; + &amp;quot;\&amp;quot; &amp;quot;+ Server.MapPath (&amp;quot; ~/PDF2SWF/fonts &amp;quot;) +&amp;quot;\&amp;quot; -p&amp;quot; + numPagina + &amp;quot;&amp;quot; + cadena_archivo + &amp;quot;-o&amp;quot; + cadena_archivo+&amp;quot;&amp;quot;+numPagina+ &amp;quot;swf.&amp;quot;;&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;// Inicia el proceso&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;p.Start ();&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;p.WaitForExit ();&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;p.Close (); &lt;/p&gt;
&lt;img src="http://dotnetslackers.com/Community/aggbug.aspx?PostID=37213" width="1" height="1"&gt;</description></item><item><title>re: Convert PDF to SWF in ASP.NET</title><link>http://dotnetslackers.com/Community/blogs/haissam/archive/2008/03/14/convert-pdf-to-swf-in-asp-net.aspx#37212</link><pubDate>Mon, 19 Sep 2011 18:04:26 GMT</pubDate><guid isPermaLink="false">6afe0437-14b4-41d5-bc66-6d54a24dbd48:37212</guid><dc:creator>kmlos</dc:creator><description>&lt;p&gt;Hola:&lt;/p&gt;
&lt;p&gt;Estoy haciendo en asp.net una aplicacion, y necesito leer los pdf de una forma mas amigable, por lo que he seguido las recomendaciones, y he utilizado swftools, a continuacion pongo el codigo, que corre, pero no convierte nada,&lt;/p&gt;
&lt;p&gt;si me pudieran ayduar se lo agradeceria, &lt;/p&gt;
&lt;p&gt;NOta: Esto es de vida o muerte &lt;/p&gt;
&lt;p&gt;int numPagina = 1;&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; string cadena_archivo = &amp;quot;~/App_Data/11-Creating an Action.pdf&amp;quot;;&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;System.Diagnostics.Process p = new System.Diagnostics.Process ();&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;p.StartInfo.UseShellExecute = false;&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;p.StartInfo.RedirectStandardOutput = true;&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;p.StartInfo.CreateNoWindow = true;&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;p.StartInfo.RedirectStandardError = true;&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;p.StartInfo.WorkingDirectory =Server.MapPath (&amp;quot;~&amp;quot;);&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;p.StartInfo.FileName = (@&amp;quot;C:\swftools\pdf2swf.exe&amp;quot;);&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;p.StartInfo.Arguments = &amp;quot;-F&amp;quot; + &amp;quot;\&amp;quot; &amp;quot;+ Server.MapPath (&amp;quot; ~/PDF2SWF/fonts &amp;quot;) +&amp;quot;\&amp;quot; -p&amp;quot; + numPagina + &amp;quot;&amp;quot; + cadena_archivo + &amp;quot;-o&amp;quot; + cadena_archivo+&amp;quot;&amp;quot;+numPagina+ &amp;quot;swf.&amp;quot;;&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;// Inicia el proceso&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;p.Start ();&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;p.WaitForExit ();&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;p.Close (); &lt;/p&gt;
&lt;img src="http://dotnetslackers.com/Community/aggbug.aspx?PostID=37212" width="1" height="1"&gt;</description></item><item><title>re: Convert PDF to SWF in ASP.NET</title><link>http://dotnetslackers.com/Community/blogs/haissam/archive/2008/03/14/convert-pdf-to-swf-in-asp-net.aspx#36872</link><pubDate>Fri, 17 Sep 2010 03:13:46 GMT</pubDate><guid isPermaLink="false">6afe0437-14b4-41d5-bc66-6d54a24dbd48:36872</guid><dc:creator>laynechin</dc:creator><description>&lt;p&gt;This code to open PDF in HTML&lt;/p&gt;
&lt;p&gt;&amp;lt;Iframe&lt;/p&gt;
&lt;p&gt;src = &amp;quot;test.pdf&amp;quot; width = &amp;quot;500&amp;quot; height = &amp;quot;800&amp;quot; align = &amp;quot;middle&amp;quot;&amp;gt; &amp;lt;/ iframe&amp;gt;&lt;/p&gt;
&lt;p&gt;This code to open PDF in Flash&lt;/p&gt;
&lt;p&gt;on(release){getURL(&amp;quot;mypdf.pdf&amp;quot;, &amp;quot;_blank&amp;quot;);}&lt;/p&gt;
&lt;p&gt;Layne Chin&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://www.pdf-to-flash-magazine.com"&gt;www.pdf-to-flash-magazine.com&lt;/a&gt;&lt;/p&gt;
&lt;img src="http://dotnetslackers.com/Community/aggbug.aspx?PostID=36872" width="1" height="1"&gt;</description></item><item><title>re: Convert PDF to SWF in ASP.NET</title><link>http://dotnetslackers.com/Community/blogs/haissam/archive/2008/03/14/convert-pdf-to-swf-in-asp-net.aspx#36871</link><pubDate>Fri, 17 Sep 2010 03:13:00 GMT</pubDate><guid isPermaLink="false">6afe0437-14b4-41d5-bc66-6d54a24dbd48:36871</guid><dc:creator>laynechin</dc:creator><description>&lt;p&gt;This code to open PDF in HTML&lt;/p&gt;
&lt;p&gt;&amp;lt;Iframe&lt;/p&gt;
&lt;p&gt;src = &amp;quot;test.pdf&amp;quot; width = &amp;quot;500&amp;quot; height = &amp;quot;800&amp;quot; align = &amp;quot;middle&amp;quot;&amp;gt; &amp;lt;/ iframe&amp;gt;&lt;/p&gt;
&lt;p&gt;This code to open PDF in Flash&lt;/p&gt;
&lt;p&gt;on(release){getURL(&amp;quot;mypdf.pdf&amp;quot;, &amp;quot;_blank&amp;quot;);}&lt;/p&gt;
&lt;p&gt;Layne Chin&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://www.pdf-to-flash-magazine.com"&gt;www.pdf-to-flash-magazine.com&lt;/a&gt;&lt;/p&gt;
&lt;img src="http://dotnetslackers.com/Community/aggbug.aspx?PostID=36871" width="1" height="1"&gt;</description></item><item><title>Using ActiveX to launch desktop applications from SharePoint &amp;laquo; Olav Aukan</title><link>http://dotnetslackers.com/Community/blogs/haissam/archive/2007/04/20/Javascript_3A00_-Close-window-without-the-prompt-message-in-IE7.aspx#36845</link><pubDate>Tue, 31 Aug 2010 19:48:56 GMT</pubDate><guid isPermaLink="false">6afe0437-14b4-41d5-bc66-6d54a24dbd48:36845</guid><dc:creator>Using ActiveX to launch desktop applications from SharePoint « Olav Aukan</dc:creator><description>&lt;p&gt;Pingback from &amp;nbsp;Using ActiveX to launch desktop applications from SharePoint &amp;laquo; Olav Aukan&lt;/p&gt;
&lt;img src="http://dotnetslackers.com/Community/aggbug.aspx?PostID=36845" width="1" height="1"&gt;</description></item><item><title>re: Using Session variables in Session_End</title><link>http://dotnetslackers.com/Community/blogs/haissam/archive/2007/07/02/Using-variables-in-Session_5F00_End.aspx#34909</link><pubDate>Fri, 30 Apr 2010 03:47:58 GMT</pubDate><guid isPermaLink="false">6afe0437-14b4-41d5-bc66-6d54a24dbd48:34909</guid><dc:creator>kanagu</dc:creator><description>&lt;p&gt;Good&lt;/p&gt;
&lt;img src="http://dotnetslackers.com/Community/aggbug.aspx?PostID=34909" width="1" height="1"&gt;</description></item><item><title>re: Downloading Files C#</title><link>http://dotnetslackers.com/Community/blogs/haissam/archive/2007/04/03/Downloading-Files-C_2300_.aspx#34877</link><pubDate>Tue, 30 Mar 2010 09:49:19 GMT</pubDate><guid isPermaLink="false">6afe0437-14b4-41d5-bc66-6d54a24dbd48:34877</guid><dc:creator>cmmaung</dc:creator><description>&lt;p&gt;Hi, I got an error... message is like this&lt;/p&gt;
&lt;p&gt;Webpage error details&lt;/p&gt;
&lt;p&gt;User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; CMDTDF; InfoPath.2; OfficeLiveConnector.1.3; OfficeLivePatch.0.0)&lt;/p&gt;
&lt;p&gt;Timestamp: Tue, 30 Mar 2010 09:28:55 UTC&lt;/p&gt;
&lt;p&gt;Message: Sys.WebForms.PageRequestManagerParserErrorException: The message received from the server could not be parsed. Common causes for this error are when the response is modified by calls to Response.Write(), response filters, HttpModules, or server trace is enabled.&lt;/p&gt;
&lt;p&gt;Details: Error parsing near &amp;#39;&#xFFFF;&#x11;ࡱ&#x1A;&#xFFFF;&amp;#39;.&lt;/p&gt;
&lt;p&gt;Line: 976&lt;/p&gt;
&lt;p&gt;Char: 13&lt;/p&gt;
&lt;p&gt;Code: 0&lt;/p&gt;
&lt;p&gt;URI: &lt;a rel="nofollow" target="_new" href="http://146.51.221.245/POV2/ScriptResource.axd?d=_MqF5S8MUulD-iydSLK6YIulqzVTOPcEFhC2ck6pBOvSeZL-Osjqb5qvox9_d5RKBsYB0uyOQRlmzvz4KQPTRQ2&amp;amp;t=fffffffff0c63bd8"&gt;146.51.221.245/.../ScriptResource.axd&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;thanks for reply&lt;/p&gt;
&lt;img src="http://dotnetslackers.com/Community/aggbug.aspx?PostID=34877" width="1" height="1"&gt;</description></item><item><title>re: Downloading Files C#</title><link>http://dotnetslackers.com/Community/blogs/haissam/archive/2007/04/03/Downloading-Files-C_2300_.aspx#34876</link><pubDate>Tue, 30 Mar 2010 09:48:14 GMT</pubDate><guid isPermaLink="false">6afe0437-14b4-41d5-bc66-6d54a24dbd48:34876</guid><dc:creator>cmmaung</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I got an error, how can i solve?&lt;/p&gt;
&lt;p&gt;--&lt;/p&gt;
&lt;p&gt;Webpage error details&lt;/p&gt;
&lt;p&gt;User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; CMDTDF; InfoPath.2; OfficeLiveConnector.1.3; OfficeLivePatch.0.0)&lt;/p&gt;
&lt;p&gt;Timestamp: Tue, 30 Mar 2010 09:28:55 UTC&lt;/p&gt;
&lt;p&gt;Message: Sys.WebForms.PageRequestManagerParserErrorException: The message received from the server could not be parsed. Common causes for this error are when the response is modified by calls to Response.Write(), response filters, HttpModules, or server trace is enabled.&lt;/p&gt;
&lt;p&gt;Details: Error parsing near &amp;#39;&#xFFFF;&#x11;ࡱ&#x1A;&#xFFFF;&amp;#39;.&lt;/p&gt;
&lt;p&gt;Line: 976&lt;/p&gt;
&lt;p&gt;Char: 13&lt;/p&gt;
&lt;p&gt;Code: 0&lt;/p&gt;
&lt;p&gt;URI: &lt;a rel="nofollow" target="_new" href="http://146.51.221.245/POV2/ScriptResource.axd?d=_MqF5S8MUulD-iydSLK6YIulqzVTOPcEFhC2ck6pBOvSeZL-Osjqb5qvox9_d5RKBsYB0uyOQRlmzvz4KQPTRQ2&amp;amp;t=fffffffff0c63bd8"&gt;146.51.221.245/.../ScriptResource.axd&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;--&lt;/p&gt;
&lt;p&gt;thanks... pls reply&lt;/p&gt;
&lt;img src="http://dotnetslackers.com/Community/aggbug.aspx?PostID=34876" width="1" height="1"&gt;</description></item><item><title>Disable Session Expiration when using Directory.Delete()</title><link>http://dotnetslackers.com/Community/blogs/haissam/archive/2008/11/12/disable-session-expiration-when-using-directory-delete.aspx#34817</link><pubDate>Tue, 09 Mar 2010 13:09:40 GMT</pubDate><guid isPermaLink="false">6afe0437-14b4-41d5-bc66-6d54a24dbd48:34817</guid><dc:creator>blog from nlab</dc:creator><description>&lt;p&gt;Disable Session Expiration when using Directory.Delete()&lt;/p&gt;
&lt;img src="http://dotnetslackers.com/Community/aggbug.aspx?PostID=34817" width="1" height="1"&gt;</description></item><item><title>re: Close window without the prompt message in IE7</title><link>http://dotnetslackers.com/Community/blogs/haissam/archive/2007/04/20/Javascript_3A00_-Close-window-without-the-prompt-message-in-IE7.aspx#34211</link><pubDate>Wed, 30 Dec 2009 08:33:48 GMT</pubDate><guid isPermaLink="false">6afe0437-14b4-41d5-bc66-6d54a24dbd48:34211</guid><dc:creator>samnodes</dc:creator><description>&lt;p&gt;Very nice - worked a treat.&lt;/p&gt;
&lt;img src="http://dotnetslackers.com/Community/aggbug.aspx?PostID=34211" width="1" height="1"&gt;</description></item><item><title>re: Disable Session Expiration when using Directory.Delete()</title><link>http://dotnetslackers.com/Community/blogs/haissam/archive/2008/11/12/disable-session-expiration-when-using-directory-delete.aspx#34209</link><pubDate>Wed, 30 Dec 2009 05:22:05 GMT</pubDate><guid isPermaLink="false">6afe0437-14b4-41d5-bc66-6d54a24dbd48:34209</guid><dc:creator>Vandnaa Singh</dc:creator><description>&lt;p&gt;Thanks a lot. This code save me.&lt;/p&gt;
&lt;img src="http://dotnetslackers.com/Community/aggbug.aspx?PostID=34209" width="1" height="1"&gt;</description></item><item><title>re: Disable Session Expiration when using Directory.Delete()</title><link>http://dotnetslackers.com/Community/blogs/haissam/archive/2008/11/12/disable-session-expiration-when-using-directory-delete.aspx#34208</link><pubDate>Wed, 30 Dec 2009 04:42:47 GMT</pubDate><guid isPermaLink="false">6afe0437-14b4-41d5-bc66-6d54a24dbd48:34208</guid><dc:creator>Prabir Shrestha</dc:creator><description>&lt;p&gt;Hi thanks for the info.&lt;/p&gt;
&lt;p&gt;But is it possbile to strop monitoring only a particular directory.&lt;/p&gt;
&lt;p&gt;For example i dont want to monitor App_Data/tmp&lt;/p&gt;
&lt;p&gt;but other directories i i would like to monitor.&lt;/p&gt;
&lt;img src="http://dotnetslackers.com/Community/aggbug.aspx?PostID=34208" width="1" height="1"&gt;</description></item></channel></rss>
