ASP.NET Interview Question : difference between get and post method

A form is used to pass information from a web browser to a web server.There are two different ways that a form can be submitted from your browser to the webserver. In HTML, this is how one would de...Read more

Dot Net Framework:What is the .NET Framework?

Definition - What does .NET Framework (.NET) mean? The .NET framework is a software development framework from Microsoft. It provides a controlled programming environment where software can be ...Read more

Dot NET Framework - .NET Framework Interview Questions and Answers

The .NET Framework Interview Questions will give you an insight to the .NET platform.Here i tried to cover the whole .NET Framework Interview Questions which form the basis of an interview and the i...Read more

What is the differences between MVC2,MVC3 and MVC4 in c# Asp.net

Difference between MVC2, MVC3 and MVC4  View Engine :  ·         View Engine is responsible for rendering of the HTML code from your views to ...Read more

Is try catch is using a good coding (exception handling)

Is using try catch is good experience in coding practice here is a detailed answer . Best practice is that exception handling should never hide issues. This means that try-catch blocks should be ...Read more

What is the use of Just - In - Time (JIT)?

Below is the use of JIT. 1. JIT is a compiler which converts MSIL code to Native Code (ie.. CPU-specific code that runs on the same computer architecture). 2. Because the common language runti...Read more

What is GUID , why we use it?,how to create a GUID

1. GUID is Short form of Globally Unique Identifier, a unique 128-bit number that is produced by the Windows OS or by some Windows applications to identify a particular component, application, file, ...Read more

How to Rename database table column in sqlserver

you can rename a table in SQL Server 2005,2008 and 2012 by using SQL Server Management Studio or Transact-SQL. Renaming a table will not automatically rename references to that table. You must manua...Read more

How to Rename Database in sqlserver

you can rename a database in SQL Server 2005,2008 and 2012 by using SQL Server Management Studio or Transact-SQL. Here i am describe all the ways to rename a Database . Rename Database using ...Read more

Asp.net Example Calendar Control

Here i am showing an example to Insert a date into a textbox and then that date would be selected in the calendar control in asp.net.And also the selected date in calendar will fill in textbox contro...Read more

Asp.Net Example:How to get current page URL/Address in asp.net

In this article i am going to explain How to get/fetch/read current page URL/Address in asp.net using C#. Here is C#.Net Code to get current page URL/Address in asp.net. if your page full url is h...Read more

ASP.NET Interview Questions : What Are Active Server Pages (Classic ASP)?

Active Server Pages or Classic ASP, as it is more commonly known, is Microsoft's first server side scripting engine that enables you to make dynamic and interactive web pages. Classic ASP use...Read more

ASP.NET - .NET Interview Questions and Answers -Part 1

This interview section questions contains a brief introduction to the ASP.Net interview Questions in ASP.NET,C#.NET,SQL Server,.NET Framework  .NET. The most common question for experience per...Read more

Asp.Net: What is the difference between Named skins and Default skins?

Asp.Net Interview Questions,  Answer 1When you are applying any theme to a page, then by default the Default skin applies to all controls of same type to that page. This skin is default for a...Read more

SharePoint 2010 Tutorials For Beginners

SharePoint 2010 Tutorials For Beginners Lession 1 This beginner tutorial explains how to log into SharePoint, add new sites, edit themes, and create and edit lists and columns in SharePoint 2010....Read more

SharePoint 2010 Tutorials For Beginners Lesson 7 - Document Management - Content Types

This tutorial discusses content types and information management in SharePoint 2010. Tags:Sharepoint 2010 Object model Tutorial,SharePoint 2010,SharePoint 2007, SharePoint 2010 SharePoint Deve...Read more

SharePoint 2010 Tutorials For Beginners Lesson 6 - Document Management - Site Columns

This tutorial discusses what site column definitions are and how to use them in SharePoint 2010. Tags:Sharepoint 2010 Object model Tutorial,SharePoint 2010,SharePoint 2007, SharePoint 2010...Read more

SharePoint 2010 Tutorials For Beginners Lession 5 : Introduction to SharePoint Roles, Groups, and Permissions

This beginner tutorial explains basic user security including authorization and authentication, permissions, active directory, groups, and inheritance in SharePoint 2010. SharePoint 2010 Lesson ...Read more

SharePoint 2010 Tutorials For Beginners Lession 4 : Introduction to Web Parts

This beginner turorial is a guide to creating and using Web Parts in SharePoint 2010. SharePoint 2010 Tutorials Lession 4 Tags:Sharepoint 2010 Object model Tutorial,SharePoint 2010,ShareP...Read more

SharePoint 2010 Tutorials For Beginners Lession 3:Document Libraries

This beginner tutorial explains how to create and use Document Libraries and how to use Versioning and Check-In/Check-Out. SharePoint 2010 Tutorials Lession 3 Part-A SharePoint 2010 Tutorial...Read more

SharePoint 2010 Tutorials For Beginners Lession 2

This beginner tutorial explains how to add Users, add Views, and reviews how to create and edit Lists and Columns in SharePoint 2010. SharePoint 2010 Tutorials Lession 2 Part-A SharePoi...Read more

SharePoint 2010 Tutorials For Beginners Lession 1

This beginner tutorial explains how to log into SharePoint, add new sites, edit themes, and create and edit lists and columns in SharePoint 2010. Tags:Sharepoint 2010 Object model Tutorial,Share...Read more

Sharepoint Tutorial - What is sharepoint 2010 , sharepoint foundation 2010 and sharepoint server 2010 ?

In this video we will understand what is sharepoint 2010 , differences between sharepoint foundation and sharepoint server 2010 and finally we will try to understand the different software and hardwa...Read more

ASP.NET and .NET Interview question : What is Authentication and Authorization ?

 Authentication is the process where we identify who the user is.Authorization is the process where we check what kind of role and rights the identified user has. Below is the video which desc...Read more

DropDownList example: Validate DropDownList control in asp.net

Validate a Drop-Down List on a Form The easiest way to make ensure that a user picks a value from a dropdown list is to add a value to the top of the list that isn't really a valid choice, but a ...Read more

CSS position Property | CSS Positioning

Positioning in CSS The CSS positioning properties allow you to position an element. It can also place an element behind another, and specify what should happen when an element's content is too big...Read more

10 Very Helpful CSS Stylesheet Tips & Tricks

CSS (Cascading Style Sheet) is not very difficult to learn. The hardest thing is to ensure the CSS layout being displayed identically among different browsers.Following are some Very Helpful CSS ...Read more

CSS Tips & Tricks -CSS Tips for Creating Fixed bar at bottom of webpage

Following is the CSS Tips and Tricks that will Create a Fixed bar at bottom of webpage.Check this css tips. Normal 0 false false false EN-US X-NONE X-NONE ...Read more

ASP.NET Tutorial: Textbox length validation | CustomValidator Example

Sometimes you may have a set of data which always has the same number of characters. For example a UK landline telephone number has 11 characters. A length check could be set up to ensure that exact...Read more

Bind ComboBox With Relation to each other's | Bind combobox to combobox | populate a combo box Using C#

See how to bind combox with each other in C#.net for web application. you can use this coding to bind combo box for state and city names to fetch while as per user selection . ...Read more