Show Hide div area in Angular JS

This is my second post on angular js. In this post I have create 2 radiobutton and will show hide a div area on basis of selection.Create a “AngularModelController.js” file and write below code:/// <reference path=”angular.min.js” />var myApp = angular.module(‘angularApp’, [])myApp.controller(“angularController”, function ($scope) {    $scope.message = “This is my Angular JS post”;});Below is the … Read more

C# code to convert XML into Dataset

How to convert XML file into dataset in C# programming?In this blog I will show you how we can get XML data into a dataset. What is XML? XML is a markup language developed by the World Wide Web Consortium (W3C). The full form of XML is Extensible Markup Language. The way to write code … Read more

SQL Server Interview Questions Part2

Few important questions for SQL Server asked ASP.Net Developer. Part- 2  Indexes-Indexes are used to query data faster from a table. Indexing avoids full table scan. Create Index IX_customer_amount on tblcustomer (purchase_amount ASC) So this index will store purchase amount in ascending order.Purchase amount20005000550075009000 To view all indexes on a table either go to object … Read more

SQL Server Interview Questions.

In this blog, we will see some of the important SQL Interview Questions and Answers. 1. What is a Primary Key? The primary key is used to uniquely identify a record. A table can not have more than one primary key.If a table has userid, email, passport no. and userid is the primary key then how to maintain the … Read more

JQuery Tutorial

What is JQuery? · Jquery is a light weight java script library.· JQuery is cross browser.· Easy to write compare to java script. $(document).ready is a jquery event. It fires as soon as the DOM is loaded.This event is fired before all the images, css are fully loaded. $(window).load event fires when DOM and all … Read more