Combine Ajax axd files into one to improve performance [Technical Blog]
Last Updated: 14 Jul 2009
Page Views: 2,508
Rating: 0.0 / 5
Votes: 0
Popularity: 0.0
Bookmark Count: 8
Licence: The Code Project Open License (CPOL)
If we use Ajax or Ajax related controls then we'll find that a lot of script related requests are made to the server. Browser can request two concurrent requests to the server. For example browser may request for an image and while the image is loading the browser may request for an CSS file. But in
Make Standard use of Cookie with Cookie Compact Privacy Policy (P3P) [Technical Blog]
Last Updated: 14 Oct 2009
Page Views: 993
Rating: 0.0 / 5
Votes: 0
Popularity: 0.0
Bookmark Count: 1
Licence: The Code Project Open License (CPOL)
Few days ago our QA team was testing a web site and found a bug. So they informed me that my page is not working properly. So I went over their desk and found that my page is not setting cookie on the QA's PC (which is Windows Vista). So I thought it might be some error in my code. So I tried to fig
SharePoint: Form-Based Authentication with ADAM [Technical Blog]
Last Updated: 3 Nov 2009
Page Views: 1,159
Rating: 0.0 / 5
Votes: 0
Popularity: 0.0
Bookmark Count: 1
Licence: The Code Project Open License (CPOL)
what is ADAM? Active Directory Application Mode is a lightweight version of Active directory. Active directory setup requires much infrastructure, investment and management. ADAM runs as non-operating system service whereas Active Directory(AD) runs as OS service. So whereas only one AD exists per
SharePoint: Dynamically change master page [Technical Blog]
Last Updated: 3 Nov 2009
Page Views: 1,809
Rating: 0.0 / 5
Votes: 0
Popularity: 0.0
Bookmark Count: 1
Licence: The Code Project Open License (CPOL)
SharePoint branding is possible with either modification of default master or modification of default CSS. When we develop asp.net application we may need to change master page dynamically based on some criterion. For example in your site you have three groups of users: anonymous, authenticated norm
ClickOnce manifest signing [Technical Blog]
Last Updated: 16 Oct 2009
Page Views: 1,290
Rating: 4.00/5
Votes: 1
Popularity: 0.00
Bookmark Count: 2
Licence: The Code Project Open License (CPOL)
Introducing Certification When you get a Software Publisher Certificate (SPC) from a third party CA (say verisign)that is authorized by Microsoft to issue certificate, you actually get two files: a pvk and spc or cer file. .pvk file which contains the private key information. .spc or .cer file co
Lambda Expression Tree [Technical Blog]
Last Updated: 14 Jul 2009
Page Views: 4,114
Rating: 4.00/5
Votes: 1
Popularity: 0.00
Bookmark Count: 20
Licence: The Code Project Open License (CPOL)
Lambda expression is parsed as tree under the hood. The lambda expression is parsed and stored as tree-shaped structure. Each node in the expression tree is represented as expression. System.Linq.Expressions.Expression class contains static factory methods that can be used to build and manipulate ex
Microsoft Ajax CDN [Technical Blog]
Last Updated: 26 Sep 2009
Page Views: 793
Rating: 0.0 / 5
Votes: 0
Popularity: 0.0
Bookmark Count: 0
Licence: The Code Project Open License (CPOL)
Microsoft recently announced that they are going provide Content Delivery Network support for ajax and Jquery. This is great idea as developers can link the jquery to Microsoft site rather than including in the project. There are few benefits of this: 1. Don’t need to maintain duplicate jquery or aj
Google Wave: Email is too old and need to replace or re-engineered. [Technical Blog]
Last Updated: 28 Sep 2009
Page Views: 1,740
Rating: 0.0 / 5
Votes: 0
Popularity: 0.0
Bookmark Count: 2
Licence: The Code Project Open License (CPOL)
This is my first article on Google technology. I am always a fan of Microsoft technologies. But recently watching a video on Google Wave I can't help myself writing on it. I can't remember when I last astonished seeing something technically innovative. But I did so watching the power of Google Wave.
Covariance and Contravariance in C# [Technical Blog]
Last Updated: 5 Oct 2009
Page Views: 905
Rating: 3.00/5
Votes: 1
Popularity: 0.00
Bookmark Count: 0
Licence: The Code Project Open License (CPOL)
In C# roughly we can say that covariance means we can substitute derived type in place of base type. Contravariance means we can substitute base class in place of derived class (You are thinking it's not possible, right? We'll see how it's possible). To get a detail discussion on what covariance and
Tuple in C# 4.0 [Technical Blog]
Last Updated: 5 Oct 2009
Page Views: 1,229
Rating: 0.0 / 5
Votes: 0
Popularity: 0.0
Bookmark Count: 1
Licence: The Code Project Open License (CPOL)
C# 4.0 include a new feature called Tuple. In mathematics tuple is a ordered list of specific number of values called the components of the tuple. For example a 3-tuple name may be used as: (First-Name, Middle-Name, Last-Name). Let's take a look in the following example: public Tuple