<?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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>ASP .Net programs</title>
	<atom:link href="https://mitindia.in/category/asp-net/feed/" rel="self" type="application/rss+xml" />
	<link>https://mitindia.in/category/asp-net/</link>
	<description></description>
	<lastBuildDate>Thu, 21 Jul 2016 11:23:30 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0.3</generator>

<image>
	<url>https://mitindia.in/wp-content/uploads/2023/03/cropped-android-chrome-512x512-1-32x32.png</url>
	<title>ASP .Net programs</title>
	<link>https://mitindia.in/category/asp-net/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Namespace and Virtual method in c#</title>
		<link>https://mitindia.in/names-space-virtual-method-c/</link>
					<comments>https://mitindia.in/names-space-virtual-method-c/#comments</comments>
		
		<dc:creator><![CDATA[SKB]]></dc:creator>
		<pubDate>Thu, 21 Jul 2016 11:18:32 +0000</pubDate>
				<category><![CDATA[ASP.Net]]></category>
		<category><![CDATA[abstract class]]></category>
		<category><![CDATA[abstract method]]></category>
		<category><![CDATA[name space]]></category>
		<category><![CDATA[virtual method]]></category>
		<guid isPermaLink="false">http://www.mitindia.in/?p=367</guid>

					<description><![CDATA[<p>NameSpace NameSpace is the Logical group of types or we can say namespace is a container (e.g Class, Structures, Interfaces, Enumerations etc.). Example: a) System.IO logically groups input output related features. b) System.Data.SqlClient is the logical group of ado.net Connectivity with Sql server related features. In Object Oriented world, many times it is possible that [&#8230;]</p>
<p>The post <a href="https://mitindia.in/names-space-virtual-method-c/">Namespace and Virtual method in c#</a> appeared first on <a href="https://mitindia.in"></a>.</p>
]]></description>
										<content:encoded><![CDATA[<h4>NameSpace</h4>
<p>NameSpace is the Logical group of types or we can say namespace is a container (e.g Class, Structures, Interfaces, Enumerations etc.).</p>
<p>Example: a) System.IO logically groups input output related features.</p>
<p>b) System.Data.SqlClient is the logical group of ado.net Connectivity with Sql server related features. In Object Oriented world, many times it is possible that programmers will use the same class name, Qualifying NameSpace with class name can avoid this collision.</p>
<p><strong>virtual method</strong><br />
A virtual method can be redefined. The virtual keyword designates a method that is overridden in derived classes.<br />
A virtual method is created in the base class that can be overriden in the derived class.<br />
<strong>Override Method</strong><br />
The override modifier is needed for implementing polymorphic behaviors in derived classes. You can re-implement a virtual base method. This causes the base implementation to be ignored in favor of the override method.</p>
<p><strong>Abstract Class</strong><br />
Abstract classes, marked by the keyword abstract in the class definition, are typically used to define a base class in the hierarchy. What&#8217;s special about them, is that you can&#8217;t create an instance of them &#8211; if you try, you will get a compile error.</p>
<p><strong>Abstract method</strong><br />
An abstract method has no implementation. Its implementation logic is provided instead by classes that derive from it. We use an abstract class to create a base template for derived classes.</p>
<p><a class="a2a_button_whatsapp" href="https://www.addtoany.com/add_to/whatsapp?linkurl=https%3A%2F%2Fmitindia.in%2Fnames-space-virtual-method-c%2F&amp;linkname=Namespace%20and%20Virtual%20method%20in%20c%23" title="WhatsApp" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_facebook" href="https://www.addtoany.com/add_to/facebook?linkurl=https%3A%2F%2Fmitindia.in%2Fnames-space-virtual-method-c%2F&amp;linkname=Namespace%20and%20Virtual%20method%20in%20c%23" title="Facebook" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fmitindia.in%2Fnames-space-virtual-method-c%2F&#038;title=Namespace%20and%20Virtual%20method%20in%20c%23" data-a2a-url="https://mitindia.in/names-space-virtual-method-c/" data-a2a-title="Namespace and Virtual method in c#"><img src="https://static.addtoany.com/buttons/favicon.png" alt="Share"></a></p><p>The post <a href="https://mitindia.in/names-space-virtual-method-c/">Namespace and Virtual method in c#</a> appeared first on <a href="https://mitindia.in"></a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://mitindia.in/names-space-virtual-method-c/feed/</wfw:commentRss>
			<slash:comments>7</slash:comments>
		
		
			</item>
		<item>
		<title>OOPs with C#</title>
		<link>https://mitindia.in/oops-with-c/</link>
		
		<dc:creator><![CDATA[SKB]]></dc:creator>
		<pubDate>Thu, 21 Jul 2016 11:01:59 +0000</pubDate>
				<category><![CDATA[ASP.Net]]></category>
		<category><![CDATA[OOPS with C#]]></category>
		<guid isPermaLink="false">http://www.mitindia.in/?p=364</guid>

					<description><![CDATA[<p>Object oriented programming with C# Classes: Class is a C# construct to model real-world objects into classes Exa: class Employee { private string _name; private char _gender; private string _qualification; private uint _salary; } Access Modifiers Public:Accessible to the members of the containing class as well as non-members of the class Private:Accessible only to the members [&#8230;]</p>
<p>The post <a href="https://mitindia.in/oops-with-c/">OOPs with C#</a> appeared first on <a href="https://mitindia.in"></a>.</p>
]]></description>
										<content:encoded><![CDATA[<h5>Object oriented programming with C#</h5>
<p><strong>Classes: </strong>Class is a C# construct to model real-world objects into classes</p>
<p>Exa:<br />
class Employee<br />
{<br />
private string _name;<br />
private char _gender;<br />
private string _qualification;<br />
private uint _salary;<br />
}</p>
<h5>Access Modifiers</h5>
<ul>
<li><strong>Public:Accessible to the members of the containing class as well as non-members of the class</strong></li>
<li><strong>Private:Accessible only to the members of the containing class</strong></li>
<li><strong>Protected:Accessible to the containing class or types derived from the containing class</strong></li>
</ul>
<p><strong>Constructors:</strong> Special method of a class that is called every time an instance of the class is created</p>
<p>Exa:<br />
Employee()<br />
{<br />
qualification = &#8220;Graduate&#8221;;<br />
}</p>
<p><strong>Destructor:</strong> Special method to perform cleanup operations</p>
<p>Syntax:</p>
<p>{<br />
body of destructor<br />
}</p>
<h6><span style="color: #ff0000;">Note:</span></h6>
<ul>
<li><strong><span style="color: #333399;">Methods can be overloaded on the basis of varying number of parameters or different data types.</span></strong></li>
<li><strong><span style="color: #333399;">Namespace consists of a group of related classes</span></strong></li>
<li><strong><span style="color: #333399;">Inheritance is the process of acquiring features of an existing class.</span></strong></li>
<li><strong><span style="color: #333399;">The class based on which the new class is created is called base class or parent class and the class that is created is called derived, sub or child class.</span></strong></li>
<li><strong><span style="color: #333399;">The keyword base is used to access members of the base class from inside a derived class.</span></strong></li>
<li><strong><span style="color: #333399;">The override keyword is used to modify a method, property or an indexer.</span></strong></li>
<li><strong><span style="color: #333399;">The new modifier is used to explicitly hide a member that is inherited from the base class.</span></strong></li>
<li><strong><span style="color: #333399;">Abstract Classes are classes that contain at least one abstract member (method without implementation). </span></strong><br />
<strong><span style="color: #333399;">Abstract class cannot be instantiated.</span></strong></li>
<li><strong><span style="color: #333399;">Overriding a method is to change the implementation of the method in the derived class.</span></strong></li>
<li><strong><span style="color: #333399;">The virtual keyword is used to modify the declaration of a method.</span></strong></li>
<li><strong><span style="color: #333399;">Explicit Interface Implementation is used to specify which interface a member function is implementing in case of a name ambiguity.</span></strong></li>
</ul>
<p><a href="http://www.mitindia.in/2016/07/21/names-space-virtual-method-c/">Namespcace, virtual method, abstract method</a></p>
<p><a class="a2a_button_whatsapp" href="https://www.addtoany.com/add_to/whatsapp?linkurl=https%3A%2F%2Fmitindia.in%2Foops-with-c%2F&amp;linkname=OOPs%20with%20C%23" title="WhatsApp" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_facebook" href="https://www.addtoany.com/add_to/facebook?linkurl=https%3A%2F%2Fmitindia.in%2Foops-with-c%2F&amp;linkname=OOPs%20with%20C%23" title="Facebook" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fmitindia.in%2Foops-with-c%2F&#038;title=OOPs%20with%20C%23" data-a2a-url="https://mitindia.in/oops-with-c/" data-a2a-title="OOPs with C#"><img src="https://static.addtoany.com/buttons/favicon.png" alt="Share"></a></p><p>The post <a href="https://mitindia.in/oops-with-c/">OOPs with C#</a> appeared first on <a href="https://mitindia.in"></a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Basics of C#</title>
		<link>https://mitindia.in/basics-of-c/</link>
					<comments>https://mitindia.in/basics-of-c/#comments</comments>
		
		<dc:creator><![CDATA[SKB]]></dc:creator>
		<pubDate>Thu, 21 Jul 2016 05:38:06 +0000</pubDate>
				<category><![CDATA[ASP.Net]]></category>
		<category><![CDATA[C# Basics]]></category>
		<category><![CDATA[visual c#]]></category>
		<guid isPermaLink="false">http://www.mitindia.in/?p=355</guid>

					<description><![CDATA[<p>Fundamentals of C# Variables: Variables are used to store values of a particular datatype. Syntax: access_modifier datatype VariableName Constants: Constants are used to maintain a value throughout a program. Syntax: const datatype ConstantName = value; Fundamental Types Of C# C# divides data types into two fundamental categories Value Types Represent actual data Just hold a value in [&#8230;]</p>
<p>The post <a href="https://mitindia.in/basics-of-c/">Basics of C#</a> appeared first on <a href="https://mitindia.in"></a>.</p>
]]></description>
										<content:encoded><![CDATA[<h3>Fundamentals of C#</h3>
<p>Variables: Variables are used to store values of a particular datatype.</p>
<p>Syntax:<br />
access_modifier datatype VariableName</p>
<p>Constants: Constants are used to maintain a value throughout a program.</p>
<p>Syntax:<br />
const datatype ConstantName = value;</p>
<h5>Fundamental Types Of C#</h5>
<p>C# divides data types into two fundamental categories</p>
<p><strong>Value Types</strong><br />
Represent actual data<br />
Just hold a value in memory<br />
Are stored in a stack<br />
int, char, structures</p>
<p><strong>Reference Types</strong><br />
Signify a pointer or a reference to the data<br />
Contains the address of the object in the heap<br />
= null means that no object has been referenced<br />
classes, interfaces, arrays, strings</p>
<h6>Data types in C#<img fetchpriority="high" decoding="async" class="aligncenter wp-image-359 size-full" src="http://www.mitindia.in/wp-content/uploads/2016/07/datatypes.jpg" alt="Data Types" width="535" height="386" srcset="https://mitindia.in/wp-content/uploads/2016/07/datatypes.jpg 535w, https://mitindia.in/wp-content/uploads/2016/07/datatypes-300x216.jpg 300w" sizes="(max-width: 535px) 100vw, 535px" /></h6>
<p><strong>Boxing &amp; Unboxing</strong><br />
Boxing is conversion of a value type into a reference type</p>
<p>Unboxing is the conversion of a reference type into a value type</p>
<p>With Boxing and unboxing one can link between value-types and reference-types by allowing any value of a value-type to be converted to and from type Object.</p>
<ul>
<li><strong>Operators in C#</strong>Arithmetic</li>
<li>Comparison</li>
<li>Ternary (Conditional)</li>
<li>Assignment</li>
<li>Logical</li>
</ul>
<p><strong>Iteration Constructs</strong><br />
To perform a set of instructions for a certain number of times or while a specific condition is true.</p>
<p><strong>Types of iteration constructs –</strong><br />
The While Loop<br />
The Do Loop<br />
The For Loop<br />
The foreach Loop<br />
<strong>Arrays</strong><br />
A group of values of similar data type<br />
Belong to reference type and hence arrays are stored on the heap<br />
The initialization or assigning of values to the array elements can be done when it is declared or at a later stage in the program.<br />
Syntax:<br />
DataType [number of elements] ArrayName;<br />
exa : int[4] array1;<br />
<strong>Structures</strong><br />
Custom data Types<br />
Can have methods defined within them<br />
Cannot implement inheritance<br />
Represent Value types</p>
<p>exa:</p>
<p>struct student<br />
{<br />
public int stud_id;<br />
public string stud_name;<br />
public float stud_marks;</p>
<p>public void show_details()<br />
{<br />
//display student details<br />
}</p>
<p><strong>Enumerators</strong><br />
Enums (abbreviation for Enumerators) are a set of named numeric constants.<br />
Used to define a data type that can have a specific set of values<br />
Enumerators are defined using the keyword enum.</p>
<p>exa:<br />
public enum WeekDays<br />
{<br />
Monday=1,<br />
Tuesday=2,<br />
Wednesday=3,<br />
Thursday=4,<br />
Friday=5<br />
}</p>
<p><a href="http://www.mitindia.in/2016/07/21/oops-with-c/">Object oriented programming with c#</a></p>
<p><a class="a2a_button_whatsapp" href="https://www.addtoany.com/add_to/whatsapp?linkurl=https%3A%2F%2Fmitindia.in%2Fbasics-of-c%2F&amp;linkname=Basics%20of%20C%23" title="WhatsApp" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_facebook" href="https://www.addtoany.com/add_to/facebook?linkurl=https%3A%2F%2Fmitindia.in%2Fbasics-of-c%2F&amp;linkname=Basics%20of%20C%23" title="Facebook" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fmitindia.in%2Fbasics-of-c%2F&#038;title=Basics%20of%20C%23" data-a2a-url="https://mitindia.in/basics-of-c/" data-a2a-title="Basics of C#"><img src="https://static.addtoany.com/buttons/favicon.png" alt="Share"></a></p><p>The post <a href="https://mitindia.in/basics-of-c/">Basics of C#</a> appeared first on <a href="https://mitindia.in"></a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://mitindia.in/basics-of-c/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>C# Introduction</title>
		<link>https://mitindia.in/c-introduction/</link>
					<comments>https://mitindia.in/c-introduction/#comments</comments>
		
		<dc:creator><![CDATA[SKB]]></dc:creator>
		<pubDate>Tue, 19 Jul 2016 12:30:03 +0000</pubDate>
				<category><![CDATA[ASP.Net]]></category>
		<category><![CDATA[.net]]></category>
		<category><![CDATA[C++]]></category>
		<category><![CDATA[visual c#]]></category>
		<guid isPermaLink="false">http://www.mitindia.in/?p=347</guid>

					<description><![CDATA[<p>All about C#.Net The .NET Framework defines the environment to execute Visual C# .NET applications and the services you can use within those applications. The .NET Framework has two main components:  Common Language Runtime (CLR)  A unified set of class libraries The .NET class libraries include code for programming topics such as threading, file I/O, [&#8230;]</p>
<p>The post <a href="https://mitindia.in/c-introduction/">C# Introduction</a> appeared first on <a href="https://mitindia.in"></a>.</p>
]]></description>
										<content:encoded><![CDATA[<h6><span style="color: #000080;">All about C#.Net</span></h6>
<p>The .NET Framework defines the environment to execute Visual C# .NET applications and the services you can use within those applications.</p>
<p><img decoding="async" class="alignright" src="http://blog.greymatterindia.com/wp-content/uploads/2014/09/C-Application-Development.png" width="179" height="134" /></p>
<p>The .NET Framework has two main components:</p>
<ul>
<li> Common Language Runtime (CLR)</li>
<li> A unified set of class libraries</li>
</ul>
<p>The .NET class libraries include code for programming topics such as threading, file I/O, database support, XML parsing, and data structures.</p>
<p>In addition to CLR and class libraries, the .NET framework also includes the programming languages and ASP.NET.</p>
<h6>CLR and MSIL</h6>
<p>CLR ensures that the functionality available to one language is available to any other .NET language.</p>
<p>Microsoft Intermediate Language (MSIL) is composed of a specific set of instructions that indicate how your code should be executed.</p>
<p>The main job of a JIT compiler is to translate your generic MSIL code into machine code that can be directly executed by your CPU.</p>
<p>MSIL code can be easily read by the verification process</p>
<h5>CLS,CTS &amp; Garbage Collector</h5>
<ul>
<li>Common Language Specification (CLS)</li>
<li>Is a set of rules that any .NET language should follow</li>
<li>Is used to create applications that are interoperable with other languages</li>
</ul>
<h4>Common Type System (CTS) commonly:</h4>
<ul>
<li>Contains the standard data types</li>
<li>Contains the set of guidelines.</li>
</ul>
<h5>Garbage Collector</h5>
<ul>
<li> Is a destructor used for clean up operations</li>
<li> Is responsible for freeing up memory</li>
</ul>
<h6>Conclusion</h6>
<ul>
<li>.NET Framework is made up of two major components; .NET Framework Class Library and Common Language Runtime.</li>
<li>The CLR is a modern runtime environment that manages the execution of user code, providing services such as JIT compilation, memory management, exception management, debugging etc.</li>
<li>The CTS defines the rules by which all types are declared, defined and managed, regardless of source language.</li>
<li>The CLS is a set of minimum standards that all compilers targeting .NET must support to ensure language interoperability.</li>
<li>Namespaces is a grouping of similar classes having related methods and is used specifically to avoid name clashes between classes.</li>
<li>The Just In Time (JIT) compiler compiles the MSIL code into a native code that is specific to the OS and machine architecture being targeted.</li>
</ul>
<p><a href="http://www.mitindia.in/2016/07/21/basics-of-c/">Basic Data Types in C#</a></p>
<p><a class="a2a_button_whatsapp" href="https://www.addtoany.com/add_to/whatsapp?linkurl=https%3A%2F%2Fmitindia.in%2Fc-introduction%2F&amp;linkname=C%23%20Introduction" title="WhatsApp" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_facebook" href="https://www.addtoany.com/add_to/facebook?linkurl=https%3A%2F%2Fmitindia.in%2Fc-introduction%2F&amp;linkname=C%23%20Introduction" title="Facebook" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fmitindia.in%2Fc-introduction%2F&#038;title=C%23%20Introduction" data-a2a-url="https://mitindia.in/c-introduction/" data-a2a-title="C# Introduction"><img src="https://static.addtoany.com/buttons/favicon.png" alt="Share"></a></p><p>The post <a href="https://mitindia.in/c-introduction/">C# Introduction</a> appeared first on <a href="https://mitindia.in"></a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://mitindia.in/c-introduction/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>C# Database Connection</title>
		<link>https://mitindia.in/c-database-connection/</link>
		
		<dc:creator><![CDATA[SKB]]></dc:creator>
		<pubDate>Thu, 30 Jun 2016 08:27:36 +0000</pubDate>
				<category><![CDATA[ASP.Net]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[c# db connection]]></category>
		<guid isPermaLink="false">http://www.mitindia.in/?p=201</guid>

					<description><![CDATA[<p>In this tutorials you&#8217;ll able to connect database(SQL) using C# asp.net Steps to connect sql server database using c#. net For more details visit at: www.mitindia.in</p>
<p>The post <a href="https://mitindia.in/c-database-connection/">C# Database Connection</a> appeared first on <a href="https://mitindia.in"></a>.</p>
]]></description>
										<content:encoded><![CDATA[<header class="entry-header">
<div>In this tutorials you&#8217;ll able to connect database(SQL) using C# asp.net</div>
</header>
<div class="entry-content">
<h3>Steps to connect sql server database using c#. net</h3>
<div><img decoding="async" class="alignnone wp-image-208 size-large" src="https://shivkblog.files.wordpress.com/2015/07/slide14.jpg?w=700&amp;h=525" alt="Slide14" width="700" height="525" /><img loading="lazy" decoding="async" class="alignnone wp-image-209 size-large" src="https://shivkblog.files.wordpress.com/2015/07/slide15.jpg?w=700&amp;h=525" alt="Slide15" width="700" height="525" /><img loading="lazy" decoding="async" class="alignnone wp-image-210 size-large" src="https://shivkblog.files.wordpress.com/2015/07/slide16.jpg?w=700&amp;h=525" alt="Slide16" width="700" height="525" /><img loading="lazy" decoding="async" class="alignnone wp-image-211 size-large" src="https://shivkblog.files.wordpress.com/2015/07/slide17.jpg?w=700&amp;h=525" alt="Slide17" width="700" height="525" /><img loading="lazy" decoding="async" class="alignnone wp-image-212 size-large" src="https://shivkblog.files.wordpress.com/2015/07/slide18.jpg?w=700&amp;h=525" alt="Slide18" width="700" height="525" /><img loading="lazy" decoding="async" class="alignnone wp-image-213 size-large" src="https://shivkblog.files.wordpress.com/2015/07/slide19.jpg?w=700&amp;h=525" alt="Slide19" width="700" height="525" /><img loading="lazy" decoding="async" class="alignnone wp-image-214 size-large" src="https://shivkblog.files.wordpress.com/2015/07/slide20.jpg?w=700&amp;h=525" alt="Slide20" width="700" height="525" /><img loading="lazy" decoding="async" class="alignnone wp-image-215 size-large" src="https://shivkblog.files.wordpress.com/2015/07/slide21.jpg?w=700&amp;h=525" alt="Slide21" width="700" height="525" /><img loading="lazy" decoding="async" class="alignnone wp-image-216 size-large" src="https://shivkblog.files.wordpress.com/2015/07/slide22.jpg?w=700&amp;h=525" alt="Slide22" width="700" height="525" /><img loading="lazy" decoding="async" class="alignnone wp-image-217 size-large" src="https://shivkblog.files.wordpress.com/2015/07/slide23.jpg?w=700&amp;h=525" alt="Slide23" width="700" height="525" /><img loading="lazy" decoding="async" class="alignnone wp-image-218 size-large" src="https://shivkblog.files.wordpress.com/2015/07/slide24.jpg?w=700&amp;h=525" alt="Slide24" width="700" height="525" /><img loading="lazy" decoding="async" class="alignnone wp-image-219 size-large" src="https://shivkblog.files.wordpress.com/2015/07/slide25.jpg?w=700&amp;h=525" alt="Slide25" width="700" height="525" /><img loading="lazy" decoding="async" class="alignnone wp-image-220 size-large" src="https://shivkblog.files.wordpress.com/2015/07/slide26.jpg?w=700&amp;h=525" alt="Slide26" width="700" height="525" /><img loading="lazy" decoding="async" class="alignnone wp-image-221 size-large" src="https://shivkblog.files.wordpress.com/2015/07/slide27.jpg?w=700&amp;h=525" alt="Slide27" width="700" height="525" /><img loading="lazy" decoding="async" class="alignnone wp-image-222 size-large" src="https://shivkblog.files.wordpress.com/2015/07/slide28.jpg?w=700&amp;h=525" alt="Slide28" width="700" height="525" /><img loading="lazy" decoding="async" class="alignnone wp-image-223 size-large" src="https://shivkblog.files.wordpress.com/2015/07/slide29.jpg?w=700&amp;h=525" alt="Slide29" width="700" height="525" /><img loading="lazy" decoding="async" class="alignnone wp-image-224 size-large" src="https://shivkblog.files.wordpress.com/2015/07/slide30.jpg?w=700&amp;h=525" alt="Slide30" width="700" height="525" /></div>
<div><img loading="lazy" decoding="async" class="aligncenter wp-image-227 size-large" src="https://shivkblog.files.wordpress.com/2015/07/slide311.jpg?w=700&amp;h=525" alt="Slide31" width="700" height="525" /></div>
<div>For more details visit at: www.mitindia.in</div>
</div>
<p><a class="a2a_button_whatsapp" href="https://www.addtoany.com/add_to/whatsapp?linkurl=https%3A%2F%2Fmitindia.in%2Fc-database-connection%2F&amp;linkname=C%23%20Database%20Connection" title="WhatsApp" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_facebook" href="https://www.addtoany.com/add_to/facebook?linkurl=https%3A%2F%2Fmitindia.in%2Fc-database-connection%2F&amp;linkname=C%23%20Database%20Connection" title="Facebook" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fmitindia.in%2Fc-database-connection%2F&#038;title=C%23%20Database%20Connection" data-a2a-url="https://mitindia.in/c-database-connection/" data-a2a-title="C# Database Connection"><img src="https://static.addtoany.com/buttons/favicon.png" alt="Share"></a></p><p>The post <a href="https://mitindia.in/c-database-connection/">C# Database Connection</a> appeared first on <a href="https://mitindia.in"></a>.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
