<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://weblogs.asp.net/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>Alessandro Zifiglio - All Comments</title><link>http://weblogs.asp.net/alessandro/default.aspx</link><description /><dc:language>en</dc:language><generator>CommunityServer 2007 SP1 (Debug Build: 20510.895)</generator><item><title>re: Bitwise operators in c# OR(|), XOR(^), AND(&amp;amp;), NOT(~)</title><link>http://weblogs.asp.net/alessandro/archive/2007/10/02/bitwise-operators-in-c-or-xor-and-amp-amp-not.aspx#7231762</link><pubDate>Fri, 16 Oct 2009 23:55:05 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7231762</guid><dc:creator>Kyi Thar</dc:creator><description>&lt;p&gt;Pls help me..&lt;/p&gt;
&lt;p&gt;I have to compute for binary Not AND(NAND), NOR and XNOR(Exclusive NOR)in C#. operator ~ and ! are not support for NAND, NOR and XNOR. so pls tell me how to .. &lt;/p&gt;
&lt;p&gt;NAND (Not AND)&lt;/p&gt;
&lt;p&gt;0 NAN 0 = 1&lt;/p&gt;
&lt;p&gt;0 NAN 1 = 1&lt;/p&gt;
&lt;p&gt;1 NAN 0 = 1&lt;/p&gt;
&lt;p&gt;1 NAN 1 = 0&lt;/p&gt;
&lt;p&gt;NOR (Not OR)&lt;/p&gt;
&lt;p&gt;0 NOR 0 = 1&lt;/p&gt;
&lt;p&gt;0 NOR 1 = 0&lt;/p&gt;
&lt;p&gt;1 NOR 0 = 0&lt;/p&gt;
&lt;p&gt;1 NOR 1 = 0&lt;/p&gt;
&lt;p&gt;XNOR (Exclusive NOR)&lt;/p&gt;
&lt;p&gt;0 XOR 0 = 1&lt;/p&gt;
&lt;p&gt;0 XOR 1 = 0&lt;/p&gt;
&lt;p&gt;1 XOR 0 = 0&lt;/p&gt;
&lt;p&gt;1 XOR 1 = 1&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7231762" width="1" height="1"&gt;</description></item><item><title>re: Fixing the ModalPopup control in the AjaxControlToolKit</title><link>http://weblogs.asp.net/alessandro/archive/2007/12/27/fixing-the-modalpopup-control-in-the-ajaxcontroltoolkit.aspx#7223141</link><pubDate>Sun, 04 Oct 2009 05:18:04 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7223141</guid><dc:creator>rob von</dc:creator><description>&lt;p&gt;I had a play with this today. Found two issues:&lt;/p&gt;
&lt;p&gt;1. An alert in the js for the popup alert(disposing) which causes an exception. I just took it out.&lt;/p&gt;
&lt;p&gt;2. When you click edit and enter update mode, if you then close the popop with the close link, the mode stays in edit mode and the next select click brings up the updated not the edit dialog.&lt;/p&gt;
&lt;p&gt;Otherwise an interesting and worthwhile solution&lt;/p&gt;
&lt;p&gt;BTW I converted to .net 3.5 and the solution to a web project and separate control project for something to do... and the form into code behind format etc. so I could have made a mistake somewhere.&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7223141" width="1" height="1"&gt;</description></item><item><title>re: Automatically reload reCAPTCHA when postingback via a partial refresh (UpdatePanel)</title><link>http://weblogs.asp.net/alessandro/archive/2008/09/09/automatically-reload-recaptcha-when-postingback-via-a-partial-refresh-updatepanel.aspx#7216701</link><pubDate>Fri, 25 Sep 2009 22:24:19 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7216701</guid><dc:creator>Filipp</dc:creator><description>&lt;p&gt;Thank you! &amp;nbsp;Just what I was looking for!&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7216701" width="1" height="1"&gt;</description></item><item><title>re: SiteMapPath Control and dynamic url based on querystring.</title><link>http://weblogs.asp.net/alessandro/archive/2007/09/30/sitemappath-control-and-dynamic-url-based-on-querystring.aspx#7216287</link><pubDate>Fri, 25 Sep 2009 09:46:52 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7216287</guid><dc:creator>Nicola</dc:creator><description>&lt;p&gt;I all,&lt;/p&gt;
&lt;p&gt;I have the opposite problem.&lt;/p&gt;
&lt;p&gt;I have a sitemapnode with querystring in url like this:&lt;/p&gt;
&lt;p&gt;&amp;lt;siteMapNode url=&amp;quot;~/page1.aspx?id=0&amp;quot; title=&amp;quot;MENU 1&amp;quot; /&amp;gt;&lt;/p&gt;
&lt;p&gt;When I navigate the page with browser in &lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://localhost/page1.aspx"&gt;http://localhost/page1.aspx&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I cannot see the SiteMap Path like this&lt;/p&gt;
&lt;p&gt;You are in: HOME &amp;gt;&amp;gt; PAGE1&lt;/p&gt;
&lt;p&gt;Can you halp me?&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7216287" width="1" height="1"&gt;</description></item><item><title>re: Part 2 : Building and binding hierarchical data from the database to the ASP.NET Navigation Controls </title><link>http://weblogs.asp.net/alessandro/archive/2008/03/01/part-2-building-and-binding-hierarchical-data-from-the-database-to-the-asp-net-navigation-controls.aspx#7208072</link><pubDate>Wed, 16 Sep 2009 13:14:27 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7208072</guid><dc:creator>Mr Huy</dc:creator><description>&lt;p&gt;Thanks for your ideas. Why not binding data directly to the MenuItem.&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7208072" width="1" height="1"&gt;</description></item><item><title>re: Reducing UpdatePanel bloat by utilizing UpdateMode="Conditional" and ChildrenAsTriggers="false"</title><link>http://weblogs.asp.net/alessandro/archive/2008/01/30/reducing-updatepanel-bloat-by-utilizing-updatemode-quot-conditional-quot-and-childrenastriggers-quot-false-quot.aspx#7199715</link><pubDate>Thu, 10 Sep 2009 19:44:10 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7199715</guid><dc:creator>jamesbond11</dc:creator><description>&lt;p&gt;This is a good example but I ran into problems. My gridview which was working perfectly fine, had problems in paging when put in an updatepanel. It always showed the first page. When I went to second page, it showed the first page but in details view showed records from second page.&lt;/p&gt;
&lt;p&gt;Setting UpdateMode=&amp;quot;Always&amp;quot; and ChildrenAsTriggers=&amp;quot;True&amp;quot;&lt;/p&gt;
&lt;p&gt;resolved the problem.&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7199715" width="1" height="1"&gt;</description></item><item><title>Check if javascript is enaled or disabled &amp;laquo;  Anuup&amp;#039;s Blog</title><link>http://weblogs.asp.net/alessandro/archive/2007/10/04/rich-ajax-applications-that-do-not-break-if-javascript-is-disabled.aspx#7193089</link><pubDate>Sat, 05 Sep 2009 13:42:25 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7193089</guid><dc:creator>Check if javascript is enaled or disabled «  Anuup's Blog</dc:creator><description>&lt;p&gt;Pingback from &amp;nbsp;Check if javascript is enaled or disabled &amp;amp;laquo; &amp;nbsp;Anuup&amp;amp;#039;s Blog&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7193089" width="1" height="1"&gt;</description></item><item><title>re: Automatically reload reCAPTCHA when postingback via a partial refresh (UpdatePanel)</title><link>http://weblogs.asp.net/alessandro/archive/2008/09/09/automatically-reload-recaptcha-when-postingback-via-a-partial-refresh-updatepanel.aspx#7191846</link><pubDate>Fri, 04 Sep 2009 14:11:56 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7191846</guid><dc:creator>narinder</dc:creator><description>&lt;p&gt;I download your .dll file but its refference is not added &amp;nbsp;into asp page . please tell me how we can add refference in asp.net.&lt;/p&gt;
&lt;p&gt;thanks for helf&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7191846" width="1" height="1"&gt;</description></item><item><title>SharePoint Webpart dyn. Controls ViewState Error. &amp;laquo; PANVEGA&amp;#8217;s Blog</title><link>http://weblogs.asp.net/alessandro/archive/2008/01/04/failed-to-load-viewstate-typical-problem-with-an-obvious-solution.aspx#7183316</link><pubDate>Thu, 27 Aug 2009 20:33:36 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7183316</guid><dc:creator>SharePoint Webpart dyn. Controls ViewState Error. « PANVEGA’s Blog</dc:creator><description>&lt;p&gt;Pingback from &amp;nbsp;SharePoint Webpart dyn. Controls ViewState Error. &amp;amp;laquo; PANVEGA&amp;amp;#8217;s Blog&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7183316" width="1" height="1"&gt;</description></item><item><title>re: Failed to load viewstate ? Typical problem, with an obvious solution.</title><link>http://weblogs.asp.net/alessandro/archive/2008/01/04/failed-to-load-viewstate-typical-problem-with-an-obvious-solution.aspx#7161859</link><pubDate>Wed, 05 Aug 2009 12:39:08 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7161859</guid><dc:creator>Peter</dc:creator><description>&lt;p&gt;I&amp;#39;m also having this issue without any dynamic controls on the page. Indeed, if I stop any code from firing on postback I still get the problem. Debugging indicates that although the page is not refreshing, the pageload for each control on the page is still firing. &lt;/p&gt;
&lt;p&gt;Any ideas?&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7161859" width="1" height="1"&gt;</description></item></channel></rss>