<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	>

<channel>
	<title>GP Dotnet Solutions</title>
	<atom:link href="http://gpdotnetsolutions.com/feed" rel="self" type="application/rss+xml" />
	<link>http://gpdotnetsolutions.com</link>
	<description>Complete Dotnet Solutions</description>
	<pubDate>Sun, 15 Feb 2009 08:46:45 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to call base class constructor in c#.net ?</title>
		<link>http://gpdotnetsolutions.com/interview-questions/how-to-call-base-class-constructor-in-cnet</link>
		<comments>http://gpdotnetsolutions.com/interview-questions/how-to-call-base-class-constructor-in-cnet#comments</comments>
		<pubDate>Sun, 15 Feb 2009 08:46:45 +0000</pubDate>
		<dc:creator>Gopal</dc:creator>
		
		<category><![CDATA[Interview Questions]]></category>

		<category><![CDATA[call base class constructor]]></category>

		<category><![CDATA[Inheritance]]></category>

		<category><![CDATA[Oop]]></category>

		<guid isPermaLink="false">http://gpdotnetsolutions.com/?p=27</guid>
		<description><![CDATA[example:
class one
{
one()
{
}
}
//This is Inheritance of base class.
class two:one
{
//this is the way to calling base class constructor
two:one()
{
}
}
By Inheriting the base class we can reuse the functionality of  base class in to sub class
here one is base class two is sub class.
]]></description>
			<content:encoded><![CDATA[<p>example:</p>
<p>class one</p>
<p>{</p>
<p>one()</p>
<p>{</p>
<p>}</p>
<p>}</p>
<p>//This is <strong>Inheritance </strong>of base class.</p>
<p>class two:one</p>
<p>{</p>
<p>//this is the way to calling base class <strong>constructor</strong></p>
<p>two:one()</p>
<p>{</p>
<p>}</p>
<p>}</p>
<p>By <strong>Inherit</strong>ing the base class we can reuse the functionality of  <strong>base class</strong> in to sub class</p>
<p>here one is base class two is sub class.</p>
]]></content:encoded>
			<wfw:commentRss>http://gpdotnetsolutions.com/interview-questions/how-to-call-base-class-constructor-in-cnet/feed</wfw:commentRss>
		</item>
		<item>
		<title>What is object ?</title>
		<link>http://gpdotnetsolutions.com/interview-questions/what-is-object</link>
		<comments>http://gpdotnetsolutions.com/interview-questions/what-is-object#comments</comments>
		<pubDate>Sun, 15 Feb 2009 08:00:52 +0000</pubDate>
		<dc:creator>Gopal</dc:creator>
		
		<category><![CDATA[Interview Questions]]></category>

		<category><![CDATA[Object]]></category>

		<category><![CDATA[OOps]]></category>

		<guid isPermaLink="false">http://gpdotnetsolutions.com/?p=24</guid>
		<description><![CDATA[Object is nothing but memory allocation for to store values and do some functions.The main usage of object is reusable.Objects are expose the behaviour of class.by creating objects we can use the fucntionality of class for various different type of actions.
example:
class one
{
int a,b,c;
public one()
{
a=0;
b=0;
c=0;
}
public int add(int a,int b)
{
c=a+b;
return c;
}
}
//here is the entry point.
static class entry_point
{
static [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Object</strong> is nothing but memory allocation for to store values and do some functions.The main usage of object is <strong>reusable</strong>.Objects are expose the behaviour of class.by creating objects we can use the fucntionality of class for various different type of actions.</p>
<p>example:</p>
<p>class one</p>
<p>{</p>
<p>int a,b,c;</p>
<p>public one()</p>
<p>{</p>
<p>a=0;</p>
<p>b=0;</p>
<p>c=0;</p>
<p>}</p>
<p>public int add(int a,int b)</p>
<p>{</p>
<p>c=a+b;</p>
<p>return c;</p>
<p>}</p>
<p>}</p>
<p>//here is the entry point.</p>
<p>static class entry_point</p>
<p>{</p>
<p>static void main()</p>
<p>{</p>
<p>one a=one();</p>
<p>console.write(a.add(2,3).toString());</p>
<p>//this is reusable</p>
<p>one b=one();</p>
<p>console.write(a.add(6,7).toString());</p>
<p>}</p>
<p>}</p>
]]></content:encoded>
			<wfw:commentRss>http://gpdotnetsolutions.com/interview-questions/what-is-object/feed</wfw:commentRss>
		</item>
		<item>
		<title>How to create class in c#.net?</title>
		<link>http://gpdotnetsolutions.com/interview-questions/how-to-create-class-in-cnet</link>
		<comments>http://gpdotnetsolutions.com/interview-questions/how-to-create-class-in-cnet#comments</comments>
		<pubDate>Sun, 15 Feb 2009 07:16:35 +0000</pubDate>
		<dc:creator>Gopal</dc:creator>
		
		<category><![CDATA[Interview Questions]]></category>

		<category><![CDATA[How to create class]]></category>

		<category><![CDATA[OOps]]></category>

		<guid isPermaLink="false">http://gpdotnetsolutions.com/?p=22</guid>
		<description><![CDATA[Class having the structure like c++ and java in c#.net and microsoft adding some functionality for class. the structure of class is below.
class class_name
{
//here we can declare members.
public &#124; private &#124; protected &#124; protected internal member_name;
class_name()// this called constructor.
{
//here we can assign values for members.
member_name=values;
}
//here we can declare member function.
public &#124; private &#124; protected &#124; [...]]]></description>
			<content:encoded><![CDATA[<p>Class having the structure like c++ and java in c#.net and microsoft adding some functionality for class. the structure of class is below.</p>
<p>class class_name</p>
<p>{</p>
<p>//here we can declare members.</p>
<p>public | private | protected | protected internal member_name;</p>
<p>class_name()// this called constructor.</p>
<p>{</p>
<p>//here we can assign values for members.</p>
<p>member_name=values;</p>
<p>}</p>
<p>//here we can declare member function.</p>
<p>public | private | protected | protected internal function_name(arguments)</p>
<p>{</p>
<p>//here we can write the functionality of this function.</p>
<p>}</p>
<p>}</p>
<p>the above examples having  public | private | protected | protected internal these are called access modifiers.</p>
<p>constraints of <strong>class</strong></p>
<p>1. Constructor name and class name should be same.</p>
<p>2. Constructor should not have a return type.</p>
<p>3.By default <strong>protection level</strong> is private for constructor.</p>
<p>4.Class name should starts with alphabets.</p>
]]></content:encoded>
			<wfw:commentRss>http://gpdotnetsolutions.com/interview-questions/how-to-create-class-in-cnet/feed</wfw:commentRss>
		</item>
		<item>
		<title>What is class ?</title>
		<link>http://gpdotnetsolutions.com/interview-questions/what-is-class</link>
		<comments>http://gpdotnetsolutions.com/interview-questions/what-is-class#comments</comments>
		<pubDate>Sun, 15 Feb 2009 06:09:19 +0000</pubDate>
		<dc:creator>Gopal</dc:creator>
		
		<category><![CDATA[Interview Questions]]></category>

		<category><![CDATA[Class]]></category>

		<category><![CDATA[OOps]]></category>

		<guid isPermaLink="false">http://gpdotnetsolutions.com/?p=17</guid>
		<description><![CDATA[Class is user defined type, which can have members and member functions. and Class is a schema of objects. each and every objects will reflect the same structure of this class. while creating objects for class some memory allocated for storing values of members and do the functionality of member functions.
]]></description>
			<content:encoded><![CDATA[<p><strong>Class</strong> is user defined type, which can have members and member functions. and <strong>Class</strong> is a schema of objects. each and every objects will reflect the same structure of this class. while creating objects for <strong>class</strong> some memory allocated for storing values of members and do the functionality of member functions.</p>
]]></content:encoded>
			<wfw:commentRss>http://gpdotnetsolutions.com/interview-questions/what-is-class/feed</wfw:commentRss>
		</item>
		<item>
		<title>Introduction to ADO.NET</title>
		<link>http://gpdotnetsolutions.com/dotnet-tutorials/introduction-to-adonet</link>
		<comments>http://gpdotnetsolutions.com/dotnet-tutorials/introduction-to-adonet#comments</comments>
		<pubDate>Fri, 30 Jan 2009 02:50:02 +0000</pubDate>
		<dc:creator>Gopal</dc:creator>
		
		<category><![CDATA[ADO.Net]]></category>

		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[ADO]]></category>

		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://gpdotnetsolutions.com/?p=8</guid>
		<description><![CDATA[The advent of ASP back in late 1996 when ADO 1.0 was released represented a new way of dynamically retrieving data from a database. Though ADO was at its very infancy then, and was something of an offshoot of DAO and RDO, nevertheless it represented a new bold direction. Each subsequent version of the technology [...]]]></description>
			<content:encoded><![CDATA[<p>The advent of ASP back in late 1996 when ADO 1.0 was released represented a new way of dynamically retrieving data from a database. Though ADO was at its very infancy then, and was something of an offshoot of DAO and RDO, nevertheless it represented a new bold direction. Each subsequent version of the technology leads us one step closer to <strong>ADO 2.6</strong>, when development came to an end. At this point, emerging from the shadows came the most revolutionary framework to date - .NET, with it the very powerful and mature <strong>ADO.NET</strong>.</p>
<p>This new data component, introduced with .NET, presented an exciting new approach to data access. Though the techniques, and logic used to connect to databases with ADO.NET weren&#8217;t startlingly different from those used with its predecessor, ADO.NET had a lot to offer. What was unique about this technology was the architecture beneath it all, its powerful approach to data management, and the flexibility in the next level of data-presenting devices.</p>
<p><strong>ADO</strong>, for its time, was certainly successful. Although the re-releases of the technology hadn&#8217;t heralded dramatic change for ADO, it achieved what it had to within its own architecture. However, it was continually plagued by problems that surrounded its handling of disconnected data stores, and functioning properly and concisely with XML. This is where ADO.NET stepped in - these are the two things the new technology easily manages, as XML is the core component of the entire .NET Framework! ADO.NET was simply created to remedy all the deficiencies found in ADO, and provide developers with the power to achieve more with less.</p>
<p>In this article we&#8217;ll dive right into accessing data in .NET, and demonstrate the variety of options available to the ADO.NET developer for data access and presentation. This article is intended as a concise introduction to data access in .NET that&#8217;ll have you up to speed on the technology in no time.</p>
]]></content:encoded>
			<wfw:commentRss>http://gpdotnetsolutions.com/dotnet-tutorials/introduction-to-adonet/feed</wfw:commentRss>
		</item>
		<item>
		<title>ASP.Net Tutorial for Beginners</title>
		<link>http://gpdotnetsolutions.com/dotnet-tutorials/tutorial-for-beginners-exprienced-realtime</link>
		<comments>http://gpdotnetsolutions.com/dotnet-tutorials/tutorial-for-beginners-exprienced-realtime#comments</comments>
		<pubDate>Thu, 29 Jan 2009 05:04:02 +0000</pubDate>
		<dc:creator>Gopal</dc:creator>
		
		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[asp.net]]></category>

		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://gpdotnetsolutions.com/?p=3</guid>
		<description><![CDATA[This chapter gives an introduction about this site and the DOT NET tutorials we offer.
About this Tutorials
Welcome to ASP.NET Tutorial (Using VB.Net and C#). By completing the lessons and exercises in this book, you will acquire the skill and knowledge necessary to develop large enterprise web-based application in VB.Net or C#.
This tutorial is specially designed [...]]]></description>
			<content:encoded><![CDATA[<p><strong>This chapter gives an introduction about this site and the DOT NET tutorials we offer.</strong></p>
<h1>About this Tutorials</h1>
<p>Welcome to ASP.NET Tutorial (Using VB.Net and C#). By completing the lessons and exercises in this book, you will acquire the skill and knowledge necessary to develop large enterprise web-based application in VB.Net or C#.</p>
<p>This tutorial is specially designed for the beginners and students who are in the starting point of their IT carrier. Plain and simple English is used throughout the tutorials so that every one can understand the concepts we are discussing.</p>
<h1>Intended Audience</h1>
<p>The targetted audience for this tutorials are:</p>
<ul>
<li>Engineering and Computer Science Students</li>
<li>Beginner level programmers who want to develop their career in ASP.NET based web development.</li>
<li>Senior programmers who like to switch over to ASP.NET web programming.</li>
</ul>
<h1>What you need to know before you start ?</h1>
<p>This tutorial required that students meet the following prerequisites:</p>
<ul>
<li>Have a basic understanding of the Object-oriented programming concepts including classes, properties, methods and events.</li>
</ul>
<h1>What do we offer ?</h1>
<p>The ASP.NET tutorials in this site includes several chapters. We are still adding more and more chapters everyday. This tutorials may be completed by end of the year 2005.</p>
<p>Many chapters in this tutorials include small small exercises you can try on your computer.</p>
<p>By end of this tutorials, we will start an advanced &#8216;Shopping Cart&#8217; project. We will lead you through each and every step of developing a large dynamic website.</p>
<p>Also, some of the last chapters will guide you through the webmaster world which may help you develop and own your commercial websites and even make money from running your own websites.</p>
]]></content:encoded>
			<wfw:commentRss>http://gpdotnetsolutions.com/dotnet-tutorials/tutorial-for-beginners-exprienced-realtime/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
