CrazzyGig: Internationalization Automation Testing using WebD...

CrazzyGig: Internationalization Automation Testing using WebD...: Internationalization , a subset of Globalization also known as i18n . With the increasing competition in software industry, Organizati...

ASP.NET Interview Kit



CrazzyGig: Mobile Automation With Android WebDriver

CrazzyGig: Mobile Automation With Android WebDriver: Setup Instructions to Android Webdriver Pre-Requisites: Download Android SDK Unzip it and place it somewhere in directory Go to /andr...

CrazzyGig: Mobile Automation With Android WebDriver

CrazzyGig: Mobile Automation With Android WebDriver: Setup Instructions to Android Webdriver Pre-Requisites: Download Android SDK Unzip it and place it somewhere in directory Go to /andr...

How to add Favicon

Introduction
Favicon is a image\icon displayed alongside the address of a website and also shown as icon in your favorite/bookmark list of website.
image
How to add a favicon
  1. Create a icon (.ico) file which you want to show in address bar, on tab or icon in favorite item.
  2. Name it as favicon.ico and place it on the root folder of your website.
  3. Add below tag under <Head> section.
    <link href="favicon.ico" rel="Shortcut Icon" />
Points to remember
  1. Size of icon should not exceed dimension 16 x 16.
  2. Browsers can keep your favicon on their cache, so even if you have changed it, old icon can still be shown to user by browser. 
  3. In case above line of code is not working try using this.
    <link rel="icon" type="image/ico" href="favicon.ico" />

Android Architecture

HDInsight: Microsoft's way to work with Hadoop and Big Data.

HDInsight: Microsoft's move to gain share in Big Data Market. After trying to create its own big data management platform, aka dryad, LINQ to HPC, Microsoft has decided to stop researching on it and exploring Apache open source big data platform HADOOP. A well established and widely used big data platform for performing computation over big data. 

With partnership of Hortonworks, Microsoft has successfully delivered HDInsight: Hadoop Eco-System for Windows Server and Windows Azure. Also empowered Microsoft's products SQL Server, Excel, C#, LINQ to work with Hadoop Eco-System. 

Take a look of its high-level architecture.


HDInsight / Hadoop Eco-System

Refreshing Parent window when Pop Up window is closed in Java Script

Open a pop-up:

We have two very easy and common way of opening a new window in JavaScript.

1. Using winodw.Open() method.

window.open("http://expressdotnet.blogspot.in/","","width=200,height=100");

2. Using window.showMModalDialog() method.

window.showModalDialog("http://expressdotnet.blogspot.in/", "", "dialogHeight: 481px; dialogWidth: 718px;")


Refresh Parent window:

1. When using window.open() method, we get reference of parent window from window.opener property.
use window.opener.location.reload() method to refresh parent window.

2. When using window.showModalDialog() method, new window opens as a modal dialog and execution of code of parent window stops until pop-up gets closed.
we can use this behaviour and can call window.location.reload() method, just after line window.showModalDialog().

PEEK DEFINITION: VS 2013 [New feature]


Rowversion datatype in Sql Server: Track which row has been modified.

Introduction


Very Often while working with data, our requirement is to retrieve which data has been modified and keep to data in two tables in synchronized. For achieving this task SQL Server has provided many way such as CDC (Change Data Capture), rowversion datatype, MERGE statement and various other alternatives using such as joins , storing datetime etc, which can be used based on our requirement.
Here, we will discuss about rowversion datatype and see a small demo how we use rowversion to Sync data changes done in a table to other table.