category

home / developersection / category

Database Access in ASP.NET
.net 17-Feb-2015
Database Access in ASP.NET

This blog talks about the Database Access in ASP.NET. ASP.NET allows the following sources of data to be accessed and used:1.Databases2.XML documents

Event Handling  in C#
.net 16-Feb-2015
Event Handling in C#

This blog talks about the Event Handling in c#. An event is an action such as mouse click, a key press, mouse movement or any system-generated notifi

ASP.NET Application and Page life Cycle
.net 16-Feb-2015
ASP.NET Application and Page life Cycle

This blog talks about the ASP.NET application life cycle and page life cycle.The ASP.NET life cycle could be divided into two groups:Application life

File Handling in C++
.net 06-Feb-2015
File Handling in C++

In this blog, I’m explaining about file handling in C++ File: A File is a streamof bytes stored on some secondarystorage device.Text File: A text fil

Dynamic memory allocation in C++
.net 05-Feb-2015
Dynamic memory allocation in C++

Dynamic memory allocation in C++In this blog, I’m explaining about Dynamic memory allocation in C++Allocation:1. Dynamic memory allocation is the allo

Inline Function in C++
.net 05-Feb-2015
Inline Function in C++

In this blog, I’m explaining about Inline function in C++ What is Inline function?C++ provides an inline functions to reduce the function call overhe

Operator Overloading in C++
.net 05-Feb-2015
Operator Overloading in C++

In this blog, I’m explaining about Operator Overloading in C++ What is operator overloading?1.Changing the definition of an operator so it can be a

Inheritance in C++
.net 05-Feb-2015
Inheritance in C++

In this blog, I’m explaining about Inheritance in C++ Inheritance is the ability to create a class from another class, the “parent” class, extending

Exception Handling in C++
.net 05-Feb-2015
Exception Handling in C++

In this blog, I’m explaining about Exception handling in C++An  exception  is a problem that arises during the execution of a program Exceptions provi

Templates in C++
.net 05-Feb-2015
Templates in C++

In this blog, I’m explaining about templates in C++ Templates are also known as generic function or class which are used to implement a generic struc

Calculator in C++
.net 03-Feb-2015
Calculator in C++

In this blog, I’m create a Calculator using Visual studio c++ DescriptionThis is simple calculator that contains four basic mathimatical functions

Friend function and friend class in C++
.net 30-Jan-2015
Friend function and friend class in C++

In this blog, I’m explaining about friend function and friend class in C++Friend function1. Friend function can access the private or protected member