CSS box model disparities in different browsers (via Nikita Agrawal)

Download as pdf :  BaseStyleSheet One of the main causes for the many positional differences between layouts in various browsers, is due to the default style. Each browser applies its own styling to certain elements. This usually involves box model properties such as: settings of default width, padding, border and margin. For this reason, the default properties applied by browser IE6, IE8, Firefox3.6, Chrome8.0 has been compared. The comparison c … Read More

via Nikita Agrawal

Posted in Uncategorized | Leave a comment

Event Receivers in Share Point (via Prashant Gaur)

Event Receivers in SharePoint One of the extremely powerful & exciting feature of SharePoint is the ability to create event receivers for any list type. An event receiver is a piece of managed code that is executed in response to an event takes place within SharePoint. These events can be triggered in response to changes to list items, creation of new lists items, list items being deleted and much more. List event handlers are made possible t … Read More

via Prashant Gaur

Posted in Uncategorized | Leave a comment

Creating and Using C# Web Application over HTTPS – SSL (via Yogesh Blog)

Creating and Using C# Web Application over HTTPS – SSL Creating and Using C# Web Application over HTTPS – SSL TOC Introduction Description View Result Introduction Whenever we use Web Application, a common concern is security. As Messages are transferred in plain text over the network, anyone could intercept the message and read it. So a solution is to use HTTPS (SSL) instead of HTTP, so that the communication gets encrypted. Description You simply need to follow below mentioned steps: a. Install Cer … Read More

via Yogesh Blog

Posted in Uncategorized | Leave a comment

PIVOTING in Oracle (via Abhishek Gupta)

PIVOTING in Oracle TOC Pivoting in Oracle 10g / earlier versions Pivoting in Oracle 11g Pivoting in Oracle 10g / earlier versions Pivoting is used for changing rows into columns in a SQL Query (Crosstab). Suppose we have a table TEST_PIVOT with some data as below:               And suppose we want to know number of SE, SSE, TL, PM in each team then we can get this by specifying the query: select  DESIGNATION, max(decode(TEAM, 'A', … Read More

via Abhishek Gupta

Posted in Uncategorized | Leave a comment

How Opera started the Browser Wars (via Akshaykaushik’s Blog)

How Opera started the Browser Wars War related words seem to be pretty scary guys! But these very words actually increase the excited questions like – what was the cause? Who started it? What happens there after? Or what was the result? So here are my observations about the “Cross Browser War”. I was searching the answers to my questions on the cross browser war and from where it originated when to my surprise it was OPERA, a big challenging browser today who actually started the … Read More

via Akshaykaushik's Blog

Posted in Uncategorized | Leave a comment

When to use web storage and when to use jquery.data (via Abhishek Tyagi)

JavaScript Web Storage (DOM Storage) Web Storage also known as DOM Storage is a mechanism for client-side persistent data storage. There are two types of storage, Session Storage and Local Storage, exposed through the sessionStorage and localStorage global objects, respectively. Session Storage Session storage is intended for short-lived data and is available through the sessionStorage attribute of the window object (i.e. it is a global object). … Read More

via Abhishek Tyagi

Posted in Uncategorized | Leave a comment

SharePoint (2010) – Amazon Elastic Cloud : Mutual Compatibility (via plugged-in :-))

SharePoint (2010) - Amazon Elastic Cloud : Mutual Compatibility Mutual Compatibility: SharePoint (2010) – Amazon Elastic Cloud For beginners let me start with a brief description of MS SharePoint, which is: Microsoft SharePoint is a Web technology based server that can be used to build portals, collaboration sites, and also content management sites. In other words it is a family of software products developed by Microsoft for collaboration, file sharing and web publishing. Similarly, Amazon Elastic Compute Cl … Read More

via plugged-in 🙂

Posted in Uncategorized | Leave a comment

Content Deployement with Share Point 2010 (via Bhargava’s Blog)

Content Deployement with Share Point 2010 Table of Content Introduction Procedure References Introduction I have recently gone through the prevailing requirement of updating public site contents, although this feature is provided by all content management systems. But with Share Point we can, not only, change the contents but also allowed to manage the content controls as well as whole site-collections. Procedure This post will help you in publishing your site contents from one web appli … Read More

via Bhargava's Blog

Posted in Uncategorized | Leave a comment

iRise Prototyping Tool (via iRise Prototyping Tool)

Table Of Content Introduction Description Conclusion Introduction iRise, a vastly growing wireframe tool that has very well stabilized its position among all the available prototyping tools in the market. With its diversified approach, in terms of functionality, it is gaining a lot of importance these days, as today; it is just a matter of hours to develop complex prototypes. Now with the help of iRise, it is no more a wonder to create prototypes … Read More

via iRise Prototyping Tool

Posted in Uncategorized | Leave a comment

How to create GAC enabled Assembly (via kr2010)

Table of contents What are assemblies Types of Assemblies Difference between Local assembly and Global assembly Satellite Assembly, shared assembly, Private assembly Creating the GAC enabled assembly Creating sample for Including assembly from GAC  and used in other project Versioning What are assemblies An Assembly is a partially compiled code library for use in deployment and versioning. Assembly physically exist as DLLs or EXEs One assembly ca … Read More

via kr2010

Posted in Uncategorized | Leave a comment