Related Posts Plugin for WordPress, Blogger...

About

Follow Us

Tuesday, 30 June 2015

In this article I will explain how to write data to xml file and read from it in asp.Net using c#. Steps to follow to write and read data from XML file: 1.      First of all create a website and then create on xml File ex. XMLFile.xml. 2.      Then create...

Monday, 29 June 2015

Introduction: In this article I will explain how to enlarge images  on mouse over. Suppose we want to create a photo gallery which contains thumbnails of images (from database) and we want to show large image on mouse over. This could be possible by using jQuery. In this example I will show...

Friday, 26 June 2015

JavaScript array is an object that represents a collection of similar type of elements. We can create array in javascript. There are 3 ways to construct array in JavaScript 1.    By array literal 2.    By creating instance of Array directly (using new keyword) 3.    By using an Array constructor (using new keyword) 1.    ...

Thursday, 25 June 2015

Exceptional Handling In SQL Server: Error or exception handling in sql server is easy task. In Sql server we can find the error using TRY CATCH statement, which helps us to find the error effectively in the back end. Exceptional handling provides additional information about the errors such as Error Message, Error Line, Error Number etc. We put Sql statement in TRY block and to handle error...

Wednesday, 24 June 2015

String in Javascript: The javascript string is an object which represents sequence of character. We can create string in javascript in two ways: 1.      Using String Literal 2.      Using String object 1.      Using String literal: syntax to create string using string literal: Var newstr= “This is string”; Example: <script>        ...

Tuesday, 23 June 2015

Objects in javascript: Object in javascripts is an entity having properties and methods. For example: car pen etc. Javascript is object oriented language.  Javascript is not class based language it is template based. So without class we can create object in javascript directly. How to create objects in javascript: There are three methods to create objects: 1.     ...

Tuesday, 9 June 2015

Introduction:  In this article I will explain how to fill or filter a gridview based on dropdown selected value in asp.net using c#, vb.net. In his article I will filter the gridview data according to dropdown selection. First of all I will bind the dropdown with data from database...

Monday, 8 June 2015

Introduction:  In this article I will explain how to fill a jQuery autocomplete textbox from database in asp.net using c#, vb.net with example and show / display no results found message in autocomplete textbox when no matching records found in...

Friday, 5 June 2015

Introduction:  In this article I will explain how to use jQuery to set dropdownlist selected value or text based on value / text with the help of jQuery....
Introduction:  In this article I will explain how to set dropdownlist selected value on page load or code behind in asp.net (c#, vb.net). In dropdownlist we can set selected item by value or text using FindByValue and FindByText properties. We have...