<?xml version='1.0' encoding='UTF-8'?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/" xmlns:blogger="http://schemas.google.com/blogger/2008" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" version="2.0"><channel><atom:id>tag:blogger.com,1999:blog-3147840259695691644</atom:id><lastBuildDate>Fri, 01 Nov 2024 10:35:30 +0000</lastBuildDate><category>asp.net</category><category>.Net</category><category>Tips</category><category>C#</category><category>SQL</category><category>debugging</category><category>programming</category><category>Session</category><category>core concept</category><category>.Net 2.0</category><category>IIS</category><category>Interface</category><category>SharePoint</category><category>T-SQL</category><category>application</category><category>database</category><category>random post</category><category>web</category><category>ADO.Net</category><category>Asynchronous</category><category>AutoEventWireup</category><category>Blog</category><category>C++</category><category>CSS</category><category>Community</category><category>Computing</category><category>Conference</category><category>DBA</category><category>Data Access Layer</category><category>Deserialization</category><category>Ethics</category><category>Event</category><category>Exception</category><category>Exexcution</category><category>Forum</category><category>Houston</category><category>IDE</category><category>Innovator</category><category>Intellisense</category><category>LINQ</category><category>Language Feature</category><category>Master Pages</category><category>Microsoft</category><category>Overloading</category><category>Page</category><category>Private</category><category>Programming360</category><category>Re-design</category><category>Serialization</category><category>Social Networking</category><category>Software Engineering</category><category>Stackoverflow</category><category>Steve Jobs</category><category>Technology</category><category>Trick</category><category>Twitter</category><category>UI</category><category>VS 2008</category><category>WCF</category><category>blog review</category><category>casting</category><category>comic</category><category>computer science</category><category>concept</category><category>control</category><category>developer</category><category>end user</category><category>events</category><category>free</category><category>front end</category><category>guest blog writer</category><category>jQuery</category><category>new technology</category><category>quotes</category><category>restart</category><category>series</category><category>static constructor</category><category>stored procedure</category><category>subforum</category><category>thoughts</category><category>tool</category><category>transaction</category><category>tutorial</category><category>validation controls</category><category>version</category><category>web development</category><category>wijix</category><title>Programming360</title><description>Creating Understanding and Educating Programmers, Developers and Technical Communities, one post at a time.</description><link>http://programming360.blogspot.com/</link><managingEditor>noreply@blogger.com (Syed Tayyab Ali)</managingEditor><generator>Blogger</generator><openSearch:totalResults>53</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3147840259695691644.post-5246304988733172910</guid><pubDate>Wed, 22 Jun 2016 14:29:00 +0000</pubDate><atom:updated>2016-06-22T09:29:43.179-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">.Net</category><category domain="http://www.blogger.com/atom/ns#">version</category><title>.Net Framework Version </title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
Run this command in command prompt.&lt;br /&gt;
&lt;br /&gt;
dir %windir%\Microsoft.NET\Framework/AD&lt;/div&gt;
</description><link>http://programming360.blogspot.com/2016/06/net-framework-version.html</link><author>noreply@blogger.com (Syed Tayyab Ali)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3147840259695691644.post-5748648580490562616</guid><pubDate>Thu, 02 May 2013 15:16:00 +0000</pubDate><atom:updated>2013-05-02T10:16:26.853-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">database</category><category domain="http://www.blogger.com/atom/ns#">SQL</category><category domain="http://www.blogger.com/atom/ns#">Tips</category><title>Find Text in Stored Procedures</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
Method to retrieve every text inside the stored procedures of a database&lt;br /&gt;
&lt;div style=&quot;background-color: silver; font-family: Courier New; font-weight: bold;&quot;&gt;
&lt;span style=&quot;font-size: small;&quot;&gt;SELECT B.Name, *&lt;br /&gt;FROM syscomments A INNER JOIN sysobjects B&lt;br /&gt;ON A.id = B.id&lt;br /&gt;WHERE A.text like &#39;%tblNames%&#39;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;

Reference: http://geekswithblogs.net/whiletrue/archive/2009/02/02/find-text-in-sql-stored-procedures.aspx</description><link>http://programming360.blogspot.com/2013/05/find-text-in-stored-procedures.html</link><author>noreply@blogger.com (Syed Tayyab Ali)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3147840259695691644.post-519347945571371596</guid><pubDate>Tue, 16 Apr 2013 17:30:00 +0000</pubDate><atom:updated>2013-04-16T12:30:13.763-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">C#</category><category domain="http://www.blogger.com/atom/ns#">static constructor</category><title>Static Constructor in C#</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
In C#, static constructor is always private and it does not need explicit access modifier, it does not take parameters and only good for initialization of static members of class. Static constructor calls before first instance of class&#39;s object and user does not really have any control on it. &lt;br /&gt;
&lt;br /&gt;
Singleton pattern also take the advantage of static constructor of C#. &lt;/div&gt;
</description><link>http://programming360.blogspot.com/2013/04/static-constructor-in-c.html</link><author>noreply@blogger.com (Syed Tayyab Ali)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3147840259695691644.post-2785042606495534896</guid><pubDate>Wed, 10 Apr 2013 16:48:00 +0000</pubDate><atom:updated>2013-04-10T11:48:26.606-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">C#</category><category domain="http://www.blogger.com/atom/ns#">Interface</category><category domain="http://www.blogger.com/atom/ns#">Overloading</category><category domain="http://www.blogger.com/atom/ns#">Private</category><category domain="http://www.blogger.com/atom/ns#">Tips</category><title>Interface Implementations</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
Interesting post on the &lt;a href=&quot;http://geekswithblogs.net/BlackRabbitCoder/archive/2013/02/07/c.net-little-wonders-explicit-interface-implementation.aspx&quot; target=&quot;_blank&quot;&gt;different implementations of Interface in C#&lt;/a&gt;. &lt;/div&gt;
</description><link>http://programming360.blogspot.com/2013/04/interface-implementations.html</link><author>noreply@blogger.com (Syed Tayyab Ali)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3147840259695691644.post-5714529315637023287</guid><pubDate>Thu, 21 Mar 2013 17:53:00 +0000</pubDate><atom:updated>2013-03-21T12:53:17.099-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">asp.net</category><category domain="http://www.blogger.com/atom/ns#">AutoEventWireup</category><title>AutoEventWireup</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
If &lt;b&gt;autoeventwireup=true&lt;/b&gt;, ASP.NET page events will automatically subscribe to respective life cycle event. An special hash table behind the scene maintains the match. :) &lt;/div&gt;
</description><link>http://programming360.blogspot.com/2013/03/autoeventwireup.html</link><author>noreply@blogger.com (Syed Tayyab Ali)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3147840259695691644.post-3194006183929336090</guid><pubDate>Thu, 12 Apr 2012 16:28:00 +0000</pubDate><atom:updated>2012-04-12T11:38:41.206-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">WCF</category><title>ABC of WCF</title><description>WCF service exposes endpoints and each endpoint contain &lt;span style=&quot;font-weight: bold;&quot;&gt;address&lt;/span&gt;, &lt;span style=&quot;font-weight: bold;&quot;&gt;binding &lt;/span&gt;and &lt;span style=&quot;font-weight: bold;&quot;&gt;contract&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Address:&lt;/span&gt; Where the service communicate and points to actual network address.&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Binding: &lt;/span&gt;How service communicate and includes protocol.&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Contract:&lt;/span&gt; What the message contain.</description><link>http://programming360.blogspot.com/2012/04/abc-of-wcf.html</link><author>noreply@blogger.com (Syed Tayyab Ali)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3147840259695691644.post-2185683268414214771</guid><pubDate>Thu, 10 Nov 2011 02:26:00 +0000</pubDate><atom:updated>2011-11-09T20:27:08.871-06:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">LINQ</category><title>Language Integrated Query</title><description>LINQ api provide a way to access &lt;b&gt;Object &lt;/b&gt;Data, &lt;b&gt;Relational &lt;/b&gt;Data, and &lt;b&gt;XML &lt;/b&gt;Data. System.LINQ defines more than 50 operators(also called standard query operator and can also be extendable) which are similar to SQL operators. Static type checking allows the assignment of selected result in correct IEnumerable object.&lt;br /&gt;&lt;br /&gt;It was also misunderstood in early days of LINQ concept that only database is accessible from API. LINQ can used with any data object which are in main memory. It is really easy to use LINQ and filter item in list instead of writing &lt;span class=&quot;Apple-style-span&quot;&gt;foreach &lt;/span&gt;code and then apply&lt;span class=&quot;Apple-style-span&quot;&gt; &lt;span class=&quot;Apple-style-span&quot;&gt;if else&lt;/span&gt;&lt;/span&gt; conditions.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;LINQ to SQL&lt;/span&gt; translates query expression into T-SQL It is simple ORM.&lt;br /&gt;&lt;br /&gt;&lt;u&gt;Some cool facts about LINQ.&lt;/u&gt;&lt;br /&gt;&lt;br /&gt;LINQ query does not execute until it is actually use/access by code. This concept is called &lt;b&gt;Deferred Execution&lt;/b&gt;. So most operators are lazy.</description><link>http://programming360.blogspot.com/2011/11/language-integrated-query.html</link><author>noreply@blogger.com (Syed Tayyab Ali)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3147840259695691644.post-2115065645725724055</guid><pubDate>Tue, 01 Nov 2011 17:54:00 +0000</pubDate><atom:updated>2011-11-01T12:58:29.157-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">.Net</category><category domain="http://www.blogger.com/atom/ns#">new technology</category><category domain="http://www.blogger.com/atom/ns#">series</category><category domain="http://www.blogger.com/atom/ns#">tutorial</category><title>New Series</title><description>In recent month I was not much active on my blog. Now I am seriously thinking to write more on WCF, and LINQ. &lt;br /&gt;&lt;br /&gt;Let me know your favorite topics or suggestions.</description><link>http://programming360.blogspot.com/2011/11/new-series.html</link><author>noreply@blogger.com (Syed Tayyab Ali)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3147840259695691644.post-4294752697667831357</guid><pubDate>Fri, 07 Oct 2011 00:55:00 +0000</pubDate><atom:updated>2011-10-06T19:57:25.949-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Computing</category><category domain="http://www.blogger.com/atom/ns#">Innovator</category><category domain="http://www.blogger.com/atom/ns#">Steve Jobs</category><title>iSad</title><description>Steve Jobs changed the computing experience from large computers to personal computers.&lt;br /&gt;He further revolutionized the computing by changing keyboard hits to clicks and then clicks to touches.&lt;br /&gt;&lt;br /&gt;&quot;Remembering that I&#39;ll be dead soon is the most important tool I&#39;ve ever encountered to help me make the big choices in life. Because almost everything — all external expectations, all pride, all fear of embarrassment or failure - these things just fall away in the face of death, leaving only what is truly important. Remembering that you are going to die is the best way I know to avoid the trap of thinking you have something to lose. You are already naked. There is no reason not to follow your heart.&quot;&lt;br /&gt;&lt;br /&gt;&quot;No one wants to die. Even people who want to go to heaven don&#39;t want to die to get there. And yet death is the destination we all share. No one has ever escaped it. And that is as it should be, because Death is very likely the single best invention of Life. It is Life&#39;s change agent. It clears out the old to make way for the new.&quot;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;iframe width=&quot;420&quot; height=&quot;390&quot; src=&quot;http://www.youtube.com/embed/UF8uR6Z6KLc&quot; frameborder=&quot;0&quot; allowfullscreen&gt;&lt;/iframe&gt;</description><link>http://programming360.blogspot.com/2011/10/isad.html</link><author>noreply@blogger.com (Syed Tayyab Ali)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://img.youtube.com/vi/UF8uR6Z6KLc/default.jpg" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3147840259695691644.post-8608589251432026901</guid><pubDate>Sun, 05 Jun 2011 23:56:00 +0000</pubDate><atom:updated>2011-06-05T22:17:24.353-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">.Net</category><category domain="http://www.blogger.com/atom/ns#">Deserialization</category><category domain="http://www.blogger.com/atom/ns#">Serialization</category><title>Serialization/Deserialization</title><description>Serialization is the process of converting object into linear sequence of byte, while deserialization is constructing object from that serialized linear sequence of byte. Serialization allows to store the content of object on file, transmit across network or send to another process. Serialization is used in distributed application.&lt;br /&gt;&lt;br /&gt;.Net provide clean way to achieve serialization and deserialization in just few lines of code.&lt;br /&gt;&lt;br /&gt;SoapFormatter/BinaryFormatter.Serialize/Deserialize methods are used.</description><link>http://programming360.blogspot.com/2011/06/serializationdeserialization.html</link><author>noreply@blogger.com (Syed Tayyab Ali)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3147840259695691644.post-7255481836216177382</guid><pubDate>Mon, 30 May 2011 03:27:00 +0000</pubDate><atom:updated>2011-05-29T22:30:36.886-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">asp.net</category><category domain="http://www.blogger.com/atom/ns#">Asynchronous</category><category domain="http://www.blogger.com/atom/ns#">programming</category><title>Asynchronous ASP.NET Programming</title><description>&lt;object type=&quot;application/x-silverlight-2&quot; data=&quot;data:application/x-silverlight-2,&quot; width=&quot;512&quot; height=&quot;289&quot;&gt;&lt;param name=&quot;minRuntimeVersion&quot; value=&quot;4.0.50401.0&quot;/&gt;&lt;param name=&quot;source&quot; value=&quot;http://channel9.msdn.com/scripts/Channel9.xap?v=1.5&quot;/&gt;&lt;param name=&quot;initParams&quot; value=&quot;mediaurl=http://e.msteched.com/public/online/08_NA_WUX402_Low_DEV.wmv,thumbnail=http://e.msteched.com/public/online/08_NA_WUX402_Low_DEV.jpg,deliverymethod=progressivedownload,autoplay=false,entryid=226baccce10b4374ae3b9ed7010b7bf4&quot;/&gt;&lt;/object&gt;</description><link>http://programming360.blogspot.com/2011/05/asynchronous-aspnet-programming.html</link><author>noreply@blogger.com (Syed Tayyab Ali)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3147840259695691644.post-2274389199289764477</guid><pubDate>Fri, 29 Apr 2011 03:04:00 +0000</pubDate><atom:updated>2011-04-28T22:13:18.316-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Event</category><category domain="http://www.blogger.com/atom/ns#">Houston</category><category domain="http://www.blogger.com/atom/ns#">SharePoint</category><title>SharePoint Saturday Houston 2011</title><description>SharePoint Saturday Houston 2011 event is going to happen on May 7.&lt;br /&gt;&lt;br /&gt;&quot;SharePoint Saturday is an educational, informative &amp;amp; lively day filled with sessions from respected SharePoint professionals &amp;amp; MVPs, covering a wide variety of SharePoint-orientated topics.  SharePoint Saturday is FREE, open to the public and is your local chance to immerse yourself in SharePoint!&quot;&lt;br /&gt;&lt;br /&gt;For more information please visit &lt;a href=&quot;http://www.sharepointsaturday.org/houston/default.aspx&quot;&gt;SharePoint Saturday Houston&lt;/a&gt; website.&lt;br /&gt;&lt;br /&gt;Please register for &lt;a href=&quot;http://www.clicktoattend.com/invitation.aspx?code=154155&quot;&gt;SharePoint Saturday Houston Event&lt;/a&gt;.</description><link>http://programming360.blogspot.com/2011/04/sharepoint-saturday-houston-2011.html</link><author>noreply@blogger.com (Syed Tayyab Ali)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3147840259695691644.post-2721008200571094223</guid><pubDate>Mon, 21 Mar 2011 16:00:00 +0000</pubDate><atom:updated>2011-03-21T11:11:51.711-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">SQL</category><title>NULL</title><description>Earlier, I posted blog on T-SQL &lt;a href=&quot;http://programming360.blogspot.com/2011/02/isnull.html&quot;&gt;ISNULL()&lt;/a&gt; function. I realized that it is not good idea to post something before sharing knowledge on NULL.&lt;br /&gt;&lt;br /&gt;NULL is considered as unknown and result of any expression that include null is also unknown. It is good idea to test null to avoid unknown result. SQL provide IS operator to test null value.&lt;br /&gt;&lt;br /&gt;&lt;i&gt;WHERE Expression IS NULL&lt;/i&gt;</description><link>http://programming360.blogspot.com/2011/03/null.html</link><author>noreply@blogger.com (Syed Tayyab Ali)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3147840259695691644.post-4255807672082368207</guid><pubDate>Thu, 24 Feb 2011 17:48:00 +0000</pubDate><atom:updated>2011-02-24T11:52:09.956-06:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">DBA</category><category domain="http://www.blogger.com/atom/ns#">SQL</category><title>Linked Server</title><description>I was looking for a linked server in SQL management studio. I can see bunch of linked server but not sure which one I needed.&lt;br /&gt;&lt;br /&gt;I found out that following query not only list the &lt;span style=&quot;font-weight: bold;&quot;&gt;linked server name&lt;/span&gt;, but also &lt;span style=&quot;font-weight: bold;&quot;&gt;server name&lt;/span&gt;, &lt;span style=&quot;font-weight: bold;&quot;&gt;database name&lt;/span&gt; information.&lt;br /&gt;&lt;br /&gt;Here is the query.&lt;br /&gt;&lt;br /&gt;SELECT * from sys.servers&lt;br /&gt;WHERE is_linked = 1&lt;br /&gt;&lt;br /&gt;Happy SQLing!!</description><link>http://programming360.blogspot.com/2011/02/linked-server.html</link><author>noreply@blogger.com (Syed Tayyab Ali)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3147840259695691644.post-7827288231552783831</guid><pubDate>Thu, 17 Feb 2011 05:12:00 +0000</pubDate><atom:updated>2011-03-21T11:25:03.158-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">T-SQL</category><title>ISNULL</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;ISNULL ( check_expression , replacement_value )&lt;br /&gt;&lt;br /&gt;Today, I am writing my thoughts on T-SQL specific function  isnull(). Current database system allows null values. &lt;a href=&quot;http://programming360.blogspot.com/2011/03/null.html&quot;&gt;Null&lt;/a&gt; itself does not show any meaning but when end users need data reports/application require data then it becomes problem.&lt;/div&gt;&lt;br /&gt;&lt;a href=&quot;http://msdn.microsoft.com/en-us/library/ms184325%28v=SQL.90%29.aspx&quot;&gt;ISNULL&lt;/a&gt; function convert null values into meaningful data value. Isnull function checks expression and if it founds null then replace it with second argument (replacement value expression) otherwise return first argument.&lt;br /&gt;&lt;br /&gt;We still have &lt;b&gt;coalesce()&lt;/b&gt; and &lt;b&gt;nullif()&lt;/b&gt; functions to control null values in more flexible way.</description><link>http://programming360.blogspot.com/2011/02/isnull.html</link><author>noreply@blogger.com (Syed Tayyab Ali)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3147840259695691644.post-7145522619307066988</guid><pubDate>Tue, 12 Oct 2010 05:21:00 +0000</pubDate><atom:updated>2010-10-12T00:21:15.027-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">asp.net</category><category domain="http://www.blogger.com/atom/ns#">debugging</category><title>Debugging ASP.NET Page</title><description>You can debug asp.net application either on page level or application level.&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;Enable debugging for a page by adding a Debug= &quot;true&quot; attribute to the &amp;lt;%@ Page %&amp;gt; directive.&lt;/li&gt;
&lt;li&gt;Enable debugging for entire application by adding &amp;lt;compilation debug = &quot;true&quot;&amp;gt; in configuration/system.web/ withing web.config file.&lt;/li&gt;
&lt;/ul&gt;</description><link>http://programming360.blogspot.com/2010/10/debugging-aspnet-page.html</link><author>noreply@blogger.com (Syed Tayyab Ali)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3147840259695691644.post-7507120267891268865</guid><pubDate>Tue, 12 Oct 2010 05:04:00 +0000</pubDate><atom:updated>2010-10-12T00:04:07.261-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">asp.net</category><title>Page.IsPostBack</title><description>The Page class includes a property called the IsPostBack property, which you can use to detect weather the page has already been posted back to server.</description><link>http://programming360.blogspot.com/2010/10/pageispostback.html</link><author>noreply@blogger.com (Syed Tayyab Ali)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3147840259695691644.post-444135012665833413</guid><pubDate>Mon, 03 May 2010 20:16:00 +0000</pubDate><atom:updated>2010-05-03T15:17:56.498-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">blog review</category><category domain="http://www.blogger.com/atom/ns#">debugging</category><title>[Blog Review] If broken it is, fix it you should</title><description>&lt;strong&gt;Tess Ferrandez&lt;/strong&gt; is an ASP.NET Escalation Engineer at Microsoft. She has been writing blog on http://blogs.msdn.com/tess/ for five years. Her areas of interest are &lt;strong&gt;debugging&lt;/strong&gt; and &lt;strong&gt;related tools&lt;/strong&gt;.&lt;br /&gt;&lt;br /&gt;I find her blog interesting and learned most of the &lt;strong&gt;advanced debugging skills&lt;/strong&gt;.&lt;br /&gt;&lt;br /&gt;Tess gave very funny name to her blog, &lt;a href=&quot;http://blogs.msdn.com/tess/&quot;&gt;If broken it is, fix it you should&lt;/a&gt;. She describe it in following words.&lt;br /&gt;&lt;blockquote&gt;Using the powers of the debugger to solve the problems of the world - and a bag of chips&lt;/blockquote&gt;</description><link>http://programming360.blogspot.com/2010/05/blog-review-if-broken-it-is-fix-it-you.html</link><author>noreply@blogger.com (Syed Tayyab Ali)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3147840259695691644.post-9084702414935361633</guid><pubDate>Fri, 23 Apr 2010 18:09:00 +0000</pubDate><atom:updated>2010-04-23T13:15:10.296-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">.Net</category><category domain="http://www.blogger.com/atom/ns#">Conference</category><category domain="http://www.blogger.com/atom/ns#">Technology</category><title>ALT.NET Houston Open Spaces 2010</title><description>Three day event from April 30th to May 2nd is going to happen in Houston, TX. This conference is being held to allow developers to come and share their experiences, learn from each other. ALT.NET is about challenging the status-quo, continually looking for ways to better our craft, and to collaborate to create a community of mindful .NET software developers.&lt;br /&gt;&lt;br /&gt;You can get registration information from &lt;a href=&quot;http://altnethouston.com/&quot;&gt;http://altnethouston.com/&lt;/a&gt;</description><link>http://programming360.blogspot.com/2010/04/altnet-houston-open-spaces-2010.html</link><author>noreply@blogger.com (Syed Tayyab Ali)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3147840259695691644.post-5059664327692697923</guid><pubDate>Tue, 23 Mar 2010 17:49:00 +0000</pubDate><atom:updated>2010-04-23T13:16:08.922-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">.Net 2.0</category><category domain="http://www.blogger.com/atom/ns#">asp.net</category><category domain="http://www.blogger.com/atom/ns#">Master Pages</category><title>Master Pages in ASP.Net</title><description>Quick overview of master pages mechanism in ASP.Net.&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjp7Gs7JKU9NxNItUFMhprEcW_EKThQ76IrHanKHL3_nkdnWvqqZfvwjOxSQM5Knt7uvSktNMkNUqrNeJdnhkMTpRBmTRQ-T1I1GaHTUl6k3QhNGOC-AxFTx-BYxegJAStGl6cjDaMRk-x4/s800/masterpages_merge.gif&quot; /&gt;&lt;br /&gt;&lt;br /&gt;Please read &lt;a href=&quot;http://msdn.microsoft.com/en-us/library/wtxbf3hh%28VS.80%29.aspx&quot;&gt;ASP.NET Master Pages Overview&lt;/a&gt;.</description><link>http://programming360.blogspot.com/2010/04/master-pages-in-aspnet.html</link><author>noreply@blogger.com (Syed Tayyab Ali)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjp7Gs7JKU9NxNItUFMhprEcW_EKThQ76IrHanKHL3_nkdnWvqqZfvwjOxSQM5Knt7uvSktNMkNUqrNeJdnhkMTpRBmTRQ-T1I1GaHTUl6k3QhNGOC-AxFTx-BYxegJAStGl6cjDaMRk-x4/s72-c/masterpages_merge.gif" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3147840259695691644.post-7524808580881784607</guid><pubDate>Mon, 22 Feb 2010 21:47:00 +0000</pubDate><atom:updated>2010-02-22T15:50:43.753-06:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">casting</category><category domain="http://www.blogger.com/atom/ns#">control</category><category domain="http://www.blogger.com/atom/ns#">events</category><title>Detect Control through Events in ASP.Net</title><description>It is cool to use Object sender and cast it to back into original control and perform desired operations.&lt;br /&gt;&lt;br /&gt;Let me know, if you get it. Otherwise, I will post code example here.</description><link>http://programming360.blogspot.com/2010/02/detect-events-in-aspnet.html</link><author>noreply@blogger.com (Syed Tayyab Ali)</author><thr:total>1</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3147840259695691644.post-5587847681263850873</guid><pubDate>Sat, 30 Jan 2010 21:16:00 +0000</pubDate><atom:updated>2010-01-30T15:17:16.368-06:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">SharePoint</category><title>SharePoint in Plain English</title><description>&lt;object width=&quot;480&quot; height=&quot;295&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/s12Jb5Z2xaE&amp;hl=en_US&amp;fs=1&amp;&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/s12Jb5Z2xaE&amp;hl=en_US&amp;fs=1&amp;&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; width=&quot;480&quot; height=&quot;295&quot;&gt;&lt;/embed&gt;&lt;/object&gt;</description><link>http://programming360.blogspot.com/2010/01/sharepoint-in-plain-english.html</link><author>noreply@blogger.com (Syed Tayyab Ali)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3147840259695691644.post-1158508653288476790</guid><pubDate>Mon, 07 Dec 2009 17:43:00 +0000</pubDate><atom:updated>2009-12-07T11:50:59.506-06:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">CSS</category><category domain="http://www.blogger.com/atom/ns#">debugging</category><category domain="http://www.blogger.com/atom/ns#">Trick</category><title>Debug CSS</title><description>It is good idea to see the styles and HTML element&#39;s dimension in complex document by using Universal Selector.&lt;br /&gt;&lt;br /&gt;Here is the code snippet.&lt;br /&gt;*&lt;br /&gt;{&lt;br /&gt;border : 1px solid black;&lt;br /&gt;}</description><link>http://programming360.blogspot.com/2009/12/debug-css.html</link><author>noreply@blogger.com (Syed Tayyab Ali)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3147840259695691644.post-4852644419022133550</guid><pubDate>Mon, 30 Nov 2009 17:21:00 +0000</pubDate><atom:updated>2009-11-30T11:25:18.813-06:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">asp.net</category><category domain="http://www.blogger.com/atom/ns#">IIS</category><category domain="http://www.blogger.com/atom/ns#">Tips</category><title>Application Pool in IIS</title><description>It is good idea to create a new pool in IIS for each web application. Instead of putting all web application in one pool, creating of new pool will isolate each application. It will provide separate worker process. Let me know, if it is good for you.</description><link>http://programming360.blogspot.com/2009/11/application-pool-in-iis.html</link><author>noreply@blogger.com (Syed Tayyab Ali)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3147840259695691644.post-7893510147241026598</guid><pubDate>Fri, 30 Oct 2009 17:09:00 +0000</pubDate><atom:updated>2009-10-30T12:21:56.030-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">IDE</category><category domain="http://www.blogger.com/atom/ns#">Intellisense</category><category domain="http://www.blogger.com/atom/ns#">jQuery</category><category domain="http://www.blogger.com/atom/ns#">Tips</category><category domain="http://www.blogger.com/atom/ns#">VS 2008</category><title>How To Enable jQuery Intellisense in VS 2008</title><description>Here I want to share some valuable information on jQuery intellisense support in Visual Studio 2008.&lt;br /&gt;Here are few steps which you need to follow.&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Make sure you already have SP1 for VS 2008. Otherwise you need to install it.&lt;/li&gt;&lt;li&gt;Install &lt;a href=&quot;http://code.msdn.microsoft.com/KB958502/Release/ProjectReleases.aspx?ReleaseId=1736&quot;&gt;patch KB958502 - JScript Editor support for “-vsdoc.js” IntelliSense files&lt;/a&gt;.&lt;/li&gt;&lt;li&gt;Download the visual studio documentation from &lt;a href=&quot;http://docs.jquery.com/Downloading_jQuery&quot;&gt;jQuery&lt;/a&gt; website.&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;Now drag downloaded documentation in your project and place it at same location where you have jQuery library. You will also notice that your downloaded documentation contain file name vsdoc2.js. In my case, I have jQuery library name jquery-1.3.2.js, when I downloaded jQuery documentation, that has jquery-1.3.2-vsdoc2.js, what I did, I removed 2 before dot. It became like &lt;strong&gt;jquery-1.3.2-vsdoc.js&lt;/strong&gt;.&lt;br /&gt;&lt;br /&gt;For more detail on jQuery subject, please visit &lt;a href=&quot;http://www.learningjquery.com/2009/07/setting-up-visual-studio-intellisense-for-jquery&quot;&gt;Setting up Visual Studio Intellisense for jQuery&lt;/a&gt;.</description><link>http://programming360.blogspot.com/2009/10/how-to-enable-jquery-intellisense-in-vs.html</link><author>noreply@blogger.com (Syed Tayyab Ali)</author><thr:total>2</thr:total></item></channel></rss>