itpksingh.blogspot.com
Tech. Info: Non-Generic Vs. Generic Type
http://itpksingh.blogspot.com/2010/03/systemcollections-vs.html
Tuesday, March 30, 2010. Non-Generic Vs. Generic Type. N/A (use IEnumerable T. N/A (just implement IDictionary. Subscribe to: Post Comments (Atom). Bangalore, Karanataka, India. Technical Consultant @ Cognizant. View my complete profile. Non-Generic Vs. Generic Type. How This Blogger Styled Balloon Sleeves. Image: Le Fashion Blog Balloon Sleeves Denim Shorts Cap Toe Flats Black Mini Bag Via @Deborabrosa] Photo via: *@Deborabrosa* Instagram is a source of incr. Search is a Jack of all trades. With each pr...
itpksingh.blogspot.com
Tech. Info: Different Type of Reports in SSRS (2008)
http://itpksingh.blogspot.com/2009/12/different-type-of-reports-in-ssrs-2008.html
Monday, December 7, 2009. Different Type of Reports in SSRS (2008). Subscribe to: Post Comments (Atom). Bangalore, Karanataka, India. Technical Consultant @ Cognizant. View my complete profile. Different Type of Reports in SSRS (2008). Implementation of two interface having the same me. Life cycle of an object. Table Variable vs Temporary Table (#, # ). How This Blogger Styled Balloon Sleeves. Search is a Jack of all trades. Aditi and Ganesh's Blog. Are we in the new phase for EB2 India? With each previe...
itpksingh.blogspot.com
Tech. Info: ASP.NET Impersonation
http://itpksingh.blogspot.com/2010/03/aspnet-impersonation.html
Wednesday, March 10, 2010. This is the default setting. In this instance, ASP.NET impersonates the token passed to it by IIS, which is either an authenticated user or the anonymous Internet user account (IUSR machinename). Impersonation enabled for a specific identity. In this instance, ASP.NET impersonates the token generated using an identity specified in the Web.config file. Ltidentity password="password" impersonate="true" username="domain user">. March 10, 2010 at 8:26 PM. View my complete profile.
itpksingh.blogspot.com
Tech. Info: October 2009
http://itpksingh.blogspot.com/2009_10_01_archive.html
Wednesday, October 21, 2009. Static Constructor in C#. C# supports following two types of constructor:. Class constructor (static constructor). Instance constructor (non-static constructor). Static constructor is a special type of constructor, introduced with C#. It gets called before the creation of the first object of a class(probably at the time of loading an assembly). Static members may be accessed from here. While creating a static constructor, a few things need to be kept in mind:. Asp:ScriptManag...
itpksingh.blogspot.com
Tech. Info: Implementation of two interface having the same method signature in the same class
http://itpksingh.blogspot.com/2009/12/implementation-of-two-interface-having.html
Wednesday, December 2, 2009. Implementation of two interface having the same method signature in the same class. If the signature of the methods in two different interfaces are same and both the interfaces are going be implemented in the same class. Following is the two interfaces:. Public interface Interface1 { string PrintName(); }. Public interface Interface2 { string PrintName(); }. From the above code we can infer that we have two interface with names Interface1. MyClass myclass = new myClass ();.
itpksingh.blogspot.com
Tech. Info: Table Variable vs Temporary Table (#, ##)
http://itpksingh.blogspot.com/2009/12/table-variable-vs-temporary-table.html
Tuesday, December 1, 2009. Table Variable vs Temporary Table (#, # ). As temporary tables (#, # ) and table variables. While the differences between # table (global temporary table) and #table (local temporary table) are well understood, there is a fair amount of confusion between #table and table variable. First, the table variable is NOT necessarily memory resident. Under memory pressure, the pages belonging to a table variable can be pushed out to tempdb. Fifth, no DDL is allowed on table variables...
itpksingh.blogspot.com
Tech. Info: March 2010
http://itpksingh.blogspot.com/2010_03_01_archive.html
Tuesday, March 30, 2010. Non-Generic Vs. Generic Type. N/A (use IEnumerable T. N/A (just implement IDictionary. Wednesday, March 10, 2010. This is the default setting. In this instance, ASP.NET impersonates the token passed to it by IIS, which is either an authenticated user or the anonymous Internet user account (IUSR machinename). Impersonation enabled for a specific identity. In this instance, ASP.NET impersonates the token generated using an identity specified in the Web.config file. August Visa Bull...
itpksingh.blogspot.com
Tech. Info: November 2009
http://itpksingh.blogspot.com/2009_11_01_archive.html
Friday, November 13, 2009. ASPNET 2.0 AJAX Extensions Update Panel - Nested Update Panel. The thumb rule with nested update panels is as follows:-. Label outside all the Update Panels. Asp:Label ID="Label3" runat="Server" Font-Bold="true" /asp:Label. Asp:Button ID="Button3" runat="Server" Text="Refresh" /. Asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Conditional". Label within the Parent Update Panel. Asp:Label ID="Label1" runat="server" Font-Bold="true" /asp:Label. When you run the above...
itpksingh.blogspot.com
Tech. Info: September 2009
http://itpksingh.blogspot.com/2009_09_01_archive.html
Tuesday, September 29, 2009. New features C# 3.0:Lambda Expressions. Lambda expression is an anonymous function that can contain expressions and statements, and can be used to create delegates or expression tree types. All lambda expressions use the lambda operator =. Which is read as " goes to. The left side of the lambda operator specifies the input parameters (if any) and the right side holds the expression or statement block. The lambda expression x = x * x is read "x goes to x times x. On the right ...
itpksingh.blogspot.com
Tech. Info: ASP.NET 2.0 AJAX Extensions Update Panel - Nested Update Panel
http://itpksingh.blogspot.com/2009/11/aspnet-20-ajax-extensions-update-panel_13.html
Friday, November 13, 2009. ASPNET 2.0 AJAX Extensions Update Panel - Nested Update Panel. The thumb rule with nested update panels is as follows:-. Label outside all the Update Panels. Asp:Label ID="Label3" runat="Server" Font-Bold="true" /asp:Label. Asp:Button ID="Button3" runat="Server" Text="Refresh" /. Asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Conditional". Label within the Parent Update Panel. Asp:Label ID="Label1" runat="server" Font-Bold="true" /asp:Label. When you run the above...