List/Grid

Tag Archives: in

Corruption In India

This is what Wikipedia has to about Indian politicians As of December 2008, 120 of India’s 522 parliament members were facing criminal charges. Many of the biggest scandals since 2010… Read more »

Merging Two Images in .NET

To merge two images what all we need to know is the what would be the final size of image. that is, equivalent to first image or second image or… Read more »

Get all facebook social plug-in comments using facebook api

To get all the Facebook social plugin comments using Facebook API execute the following fql query. https://api.facebook.com/method/fql.query?query=select%20post_fbid,%20fromid,%20object_id,%20text,%20time%20from%20comment%20where%20xid%20in%20% generic viagra price 28SELECT%20xid%20FROM%20comments_info%20WHERE%20app_id%20=%20%27147980011931026%27%20and%20xid%20=%20%27[YOUR_URL]%27%29&access_token=[YOUR_ACCESS_TOKEN] Put your access token in the URL and escape… Read more »

Only Content controls are allowed directly in a content page that contains Content controls – Error

Recently we start getting this error in BAT environment for few pages, not for all. Later on we figured out that if you are using Master pages and you put… Read more »

Exposing Logged-In User Details In an Application

Whenever we built an application (specifically web based), we require to maintain the information of logged-in user on each page of the application. and typically, we also require to authorize… Read more »

Get Number of days in a month C#

To Get number of days in C# use following line of code. best price cialis System.DateTime.DaysInMonth(Year, Month) zp8497586rq

Access specifiers in Class .NET

The visibility of a class, a method, a variable or a property tells us how this item can be accessed. The most common types of visibility are private and public,… Read more »

Deep Copy In C#

To deep copy an object in C#, i prefer to use serialization. System.Runtime.Serialization.Formatters.Binary.BinaryFormatter bf1 = new System.Runtime.Serialization.Formatters.Binary.BinaryFormatter( cheap generic viagra ); System.IO.Stream s2 = new System.IO.MemoryStream(); bf1.Serialize(s2, filteredRecords); s2.Flush(); s2.Seek(0,… Read more »

Code Access Security in .NET

Code access security manages managed code and provide different level of access to code, providing better security. Using this feature, we can actually tell CLR that this code has access… Read more »

Structures in .NET

In simple terms, Structure is a composite datatype. Structures are value in type in .NET. syntax : Struct <Strcuture_Name> { int i; } In a structure we cannot initialize the… Read more »