Social Icons

Featured Posts

This is default featured slide 1 title

Easy to customize it, from your blogger dashboard, not needed to know the codes etc.

This is default featured slide 2 title

Easy to customize it, from your blogger dashboard, not needed to know the codes etc.

This is default featured slide 3 title

Easy to customize it, from your blogger dashboard, not needed to know the codes etc.

This is default featured slide 4 title

Easy to customize it, from your blogger dashboard, not needed to know the codes etc.

This is default featured slide 5 title

Easy to customize it, from your blogger dashboard, not needed to know the codes etc.

Monday, July 28, 2014

Asp.net - .net Interview Questions and Answer

Active Server Pages (ASP), also known as Classic ASP, is a Microsoft's server-side technology, which helps in creating dynamic and user-friendly Web pages. It uses different scripting languages to create dynamic Web pages, which can be run on any type of browser. The Web pages are built by using either VBScript or JavaScript and these Web pages have access to the same services as Windows application, including ADO (ActiveX Data Objects) for database access, SMTP (Simple Mail Transfer Protocol) for e-mail, and the entire COM (Component Object Model) structure used in the Windows environment. ASP is implemented through a dynamic-link library (asp.dll) that is called by the IIS server when a Web page is requested from the server.

Insert and Retrieve Image from Database and Show in Repeater


<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs"Inherits="ADD_Retrieve_IMAGES_repeater._Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
    <title>Untitled Page</title>

Friday, July 25, 2014

ASP.NET - .NET Interview Question And Answer..

ASP.NET - .NET Interview Question And Answer..


1. What is ASP?

Active Server Pages (ASP), also known as Classic ASP, is a Microsoft's server-side technology, which helps in creating dynamic and user-friendly Web pages. It uses different scripting languages to create dynamic Web pages, which can be run on any type of browser. The Web pages are built by using either VBScript or JavaScript and these Web pages have access to the same services as Windows application, including ADO

Asp.net Create DataTable Dynamically and Bind to Gridview in C#

Introduction

Here I will explain how to create datatable dynamically and bind to gridview in asp.net using c#, vb.net or bind asp.net gridview with dynamically created table in c#, vb.net or create temporary table and bind data to columns in datatable dynamically using asp.net in c#, vb.net.


Description

In Previous posts I explained lot of articles regarding 
Asp.netGridview, SQL Server, Ajax, JavaScript etc. In many of articles I used datatable to bind data from database

Create Dynamic Ajax Pie Chart in Asp.net with Database Example

Introduction:

Here I will explain how to create dynamic Ajax pie chart in asp.net with database using c#, vb.net or create pie chart in asp.net with database example in  c#, vb.net.

Description:

In previous articles I explained Ajax collapsible panel example in asp.net, Ajax auto complete textbox, Ajax country state city dropdown, Ajax calendar control example with custom date format, Ajax rating control example with database and many articles related to Ajax and asp.net. Now I explain how to create dynamic Ajax pie chart in asp.net with database using c#, vb.net.

Thursday, July 24, 2014

SQL Server - Difference between Union and Union All

Introduction:

Here I will explain difference between UNION and UNION ALL in SQL server. Union operator will return unique records from tables and Union All in SQL server will return all the records from the tables including duplicate values also.

Description:

In previous articles I explained SQL Server change identity column value,  replace multiple spaces with single space in sql, reseed identity column value in sql server, get only month and year from date in sql server, substring function in SQL server and many articles relating to SQL server. Now I will explain difference between UNION and UNION ALL in SQL server.