<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Jaspreet&#039;s Blog</title>
	<atom:link href="http://jskharay.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://jskharay.wordpress.com</link>
	<description></description>
	<lastBuildDate>Fri, 23 Dec 2011 12:42:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='jskharay.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/35e60c67cb5328ae62e096f70cbc53e0?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Jaspreet&#039;s Blog</title>
		<link>http://jskharay.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://jskharay.wordpress.com/osd.xml" title="Jaspreet&#039;s Blog" />
	<atom:link rel='hub' href='http://jskharay.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Replace First Occurrence of a String in C#</title>
		<link>http://jskharay.wordpress.com/2011/12/23/replace-first-occurrence-of-a-string-in-c/</link>
		<comments>http://jskharay.wordpress.com/2011/12/23/replace-first-occurrence-of-a-string-in-c/#comments</comments>
		<pubDate>Fri, 23 Dec 2011 07:54:29 +0000</pubDate>
		<dc:creator>Jaspreet Singh</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Expression Validation]]></category>
		<category><![CDATA[OOPS]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[WebService]]></category>
		<category><![CDATA[Ajax in Asp.net]]></category>
		<category><![CDATA[ajax programming using asp.net]]></category>
		<category><![CDATA[asp.net using C#]]></category>

		<guid isPermaLink="false">http://jskharay.wordpress.com/?p=229</guid>
		<description><![CDATA[Replace First Occurrence of a String in C# I had a need to replace the first occurrence of a substring within a string, and C# doesn&#8217;t seem to have a way of doing this with String methods. So, I wrote my own code: &#160; public static string ReplaceStringFirstOccurrance(string original, string oldValue, string newValue){ if (String.IsNullOrEmpty(original)) return [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jskharay.wordpress.com&amp;blog=8241030&amp;post=229&amp;subd=jskharay&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://jskharay.wordpress.com/2011/12/23/replace-first-occurrence-of-a-string-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7a45a8dbe9947dcd700f5ca3d67d2177?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">jskharay</media:title>
		</media:content>
	</item>
		<item>
		<title>Display row number in gridview control</title>
		<link>http://jskharay.wordpress.com/2010/11/30/display-row-number-in-gridview-control/</link>
		<comments>http://jskharay.wordpress.com/2010/11/30/display-row-number-in-gridview-control/#comments</comments>
		<pubDate>Tue, 30 Nov 2010 05:27:30 +0000</pubDate>
		<dc:creator>Jaspreet Singh</dc:creator>
				<category><![CDATA[ajax programming]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Sql Server]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[asp]]></category>
		<category><![CDATA[asp.net using C#]]></category>
		<category><![CDATA[GridView]]></category>
		<category><![CDATA[GridView Event]]></category>

		<guid isPermaLink="false">http://jskharay.wordpress.com/?p=226</guid>
		<description><![CDATA[In this post, I&#8217;ll tell you how to display row number in asp:gridview control Take a look:- &#60;asp:GridView ID=&#8221;GridView1&#8243; runat=&#8221;server&#8221;&#62; &#60;Columns&#62; &#60;asp:TemplateField&#62; &#60;HeaderTemplate&#62; Sr.# &#60;/HeaderTemplate&#62; &#60;ItemTemplate&#62; &#60;%# Container.DataItemIndex + 1 %&#62; &#60;/ItemTemplate&#62; &#60;/asp:TemplateField&#62; &#60;asp:BoundField DataField=&#8221;Name&#8221; HeaderText=&#8221;Name&#8221; /&#62; &#60;asp:BoundField DataField=&#8221;Email&#8221; HeaderText=&#8221;Email&#8221; /&#62; &#60;/Columns&#62; &#60;/asp:GridView&#62; In your code behind file:- protected void Page_Load(object sender, EventArgs e) { [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jskharay.wordpress.com&amp;blog=8241030&amp;post=226&amp;subd=jskharay&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://jskharay.wordpress.com/2010/11/30/display-row-number-in-gridview-control/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7a45a8dbe9947dcd700f5ca3d67d2177?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">jskharay</media:title>
		</media:content>
	</item>
		<item>
		<title>Asp.net Experienced Interview Quetions And Answer</title>
		<link>http://jskharay.wordpress.com/2010/11/29/asp-net-experienced-interview-quetions-and-answer/</link>
		<comments>http://jskharay.wordpress.com/2010/11/29/asp-net-experienced-interview-quetions-and-answer/#comments</comments>
		<pubDate>Mon, 29 Nov 2010 06:54:00 +0000</pubDate>
		<dc:creator>Jaspreet Singh</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[ajax programming]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[DBMS]]></category>
		<category><![CDATA[MVC]]></category>
		<category><![CDATA[OOPS]]></category>
		<category><![CDATA[RDBMS]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Ajax in Asp.net]]></category>
		<category><![CDATA[ajax programming using asp.net]]></category>
		<category><![CDATA[asp]]></category>
		<category><![CDATA[asp.net using C#]]></category>

		<guid isPermaLink="false">http://jskharay.wordpress.com/?p=224</guid>
		<description><![CDATA[Q. Whats is Parallel Computing? Ans. To take advantage of multiple cores (that is, CPUs or processors) you can parallelize your code so that it will be distributed across multiple processors. In the past, parallelization required low-level manipulation of threads and locks, but Visual Studio 2010 and the .NET Framework 4 enhances the support for [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jskharay.wordpress.com&amp;blog=8241030&amp;post=224&amp;subd=jskharay&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://jskharay.wordpress.com/2010/11/29/asp-net-experienced-interview-quetions-and-answer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7a45a8dbe9947dcd700f5ca3d67d2177?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">jskharay</media:title>
		</media:content>
	</item>
		<item>
		<title>SQL Server Interview Question &amp; Answer</title>
		<link>http://jskharay.wordpress.com/2010/11/29/sql-server-interview-question-answer/</link>
		<comments>http://jskharay.wordpress.com/2010/11/29/sql-server-interview-question-answer/#comments</comments>
		<pubDate>Mon, 29 Nov 2010 06:48:37 +0000</pubDate>
		<dc:creator>Jaspreet Singh</dc:creator>
				<category><![CDATA[RDBMS]]></category>
		<category><![CDATA[Sql Server]]></category>

		<guid isPermaLink="false">http://jskharay.wordpress.com/?p=221</guid>
		<description><![CDATA[List of common Sql Server Interview Questions What is normalization? Well a relational database is basically composed of tables that contain related data. So the Process of organizing this data into tables is actually referred to as normalization. &#160; What is a Stored Procedure? Its nothing but a set of T-SQL statements combined to perform [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jskharay.wordpress.com&amp;blog=8241030&amp;post=221&amp;subd=jskharay&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://jskharay.wordpress.com/2010/11/29/sql-server-interview-question-answer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7a45a8dbe9947dcd700f5ca3d67d2177?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">jskharay</media:title>
		</media:content>
	</item>
		<item>
		<title>How to get Processor Serial Number using C#.net?</title>
		<link>http://jskharay.wordpress.com/2010/11/29/how-to-get-processor-serial-number-using-c-net/</link>
		<comments>http://jskharay.wordpress.com/2010/11/29/how-to-get-processor-serial-number-using-c-net/#comments</comments>
		<pubDate>Mon, 29 Nov 2010 06:07:01 +0000</pubDate>
		<dc:creator>Jaspreet Singh</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Windows Tips]]></category>
		<category><![CDATA[asp]]></category>
		<category><![CDATA[asp.net using C#]]></category>

		<guid isPermaLink="false">http://jskharay.wordpress.com/?p=218</guid>
		<description><![CDATA[How to get Processor Serial Number using C#.net? First of all include the namespace as below: using System.Management; &#160; now place the asp:button &#38; asp:label in your code behind file, as given below: &#60;asp:Label ID=&#8221;Label5&#8243; runat=&#8221;server&#8221; Text=&#8221;"&#62;&#60;/asp:Label&#62; &#60;asp:Button ID=&#8221;Button1&#8243; runat=&#8221;server&#8221; onclick=&#8221;Button1_Click1&#8243; Text=&#8221;Button&#8221; /&#62; &#160; finally goto code behind of your aspx file. Now in button [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jskharay.wordpress.com&amp;blog=8241030&amp;post=218&amp;subd=jskharay&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://jskharay.wordpress.com/2010/11/29/how-to-get-processor-serial-number-using-c-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7a45a8dbe9947dcd700f5ca3d67d2177?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">jskharay</media:title>
		</media:content>
	</item>
		<item>
		<title>Model-View-Controller</title>
		<link>http://jskharay.wordpress.com/2010/11/29/model-view-controller/</link>
		<comments>http://jskharay.wordpress.com/2010/11/29/model-view-controller/#comments</comments>
		<pubDate>Mon, 29 Nov 2010 04:58:01 +0000</pubDate>
		<dc:creator>Jaspreet Singh</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[MVC]]></category>
		<category><![CDATA[OOPS]]></category>
		<category><![CDATA[ajax programming using asp.net]]></category>
		<category><![CDATA[asp.net using C#]]></category>

		<guid isPermaLink="false">http://jskharay.wordpress.com/?p=213</guid>
		<description><![CDATA[Model-View-Controller (MVC) : MVC is an architectural design principle that separates the components of a Web application. This separation gives us more control over the individual parts of the application. MVC is a part of .net Web Application Framework. However, it is straightforward to map these concepts into the domain of multi-tier enterprise applications. By [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jskharay.wordpress.com&amp;blog=8241030&amp;post=213&amp;subd=jskharay&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://jskharay.wordpress.com/2010/11/29/model-view-controller/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7a45a8dbe9947dcd700f5ca3d67d2177?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">jskharay</media:title>
		</media:content>
	</item>
		<item>
		<title>Polymorphism</title>
		<link>http://jskharay.wordpress.com/2010/11/29/polymorphism/</link>
		<comments>http://jskharay.wordpress.com/2010/11/29/polymorphism/#comments</comments>
		<pubDate>Mon, 29 Nov 2010 04:48:12 +0000</pubDate>
		<dc:creator>Jaspreet Singh</dc:creator>
				<category><![CDATA[OOPS]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[asp.net using C#]]></category>

		<guid isPermaLink="false">http://jskharay.wordpress.com/?p=210</guid>
		<description><![CDATA[Polymorphism In programming this word is meant to reuse the single code multiple times. In object oriented programming its a big question that why the Polymorphism is done, what is the purpose of it in our code? Polymorphism is the 3rd main pillar of OOP without it the object oriented programming is incomplete. Lets go [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jskharay.wordpress.com&amp;blog=8241030&amp;post=210&amp;subd=jskharay&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://jskharay.wordpress.com/2010/11/29/polymorphism/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7a45a8dbe9947dcd700f5ca3d67d2177?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">jskharay</media:title>
		</media:content>
	</item>
		<item>
		<title>REGULAR EXPRESSION IN ASP.NET</title>
		<link>http://jskharay.wordpress.com/2010/09/25/regular-expression-in-asp-net/</link>
		<comments>http://jskharay.wordpress.com/2010/09/25/regular-expression-in-asp-net/#comments</comments>
		<pubDate>Sat, 25 Sep 2010 05:46:32 +0000</pubDate>
		<dc:creator>Jaspreet Singh</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Expression Validation]]></category>

		<guid isPermaLink="false">http://jskharay.wordpress.com/?p=205</guid>
		<description><![CDATA[Regular expressions are a good way to validate text fields such as names, addresses, phone numbers, and other user information. You can use them to constrain input, apply formatting rules, and check lengths. To validate input captured with server controls, you can use the System.Text.RegularExpressions.Regex class. Use the Regex class to constrain and validate input. Regular [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jskharay.wordpress.com&amp;blog=8241030&amp;post=205&amp;subd=jskharay&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://jskharay.wordpress.com/2010/09/25/regular-expression-in-asp-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7a45a8dbe9947dcd700f5ca3d67d2177?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">jskharay</media:title>
		</media:content>
	</item>
		<item>
		<title>ASP.NET PAGE LIFE-CYCLE</title>
		<link>http://jskharay.wordpress.com/2010/09/25/asp-net-page-life-cycle/</link>
		<comments>http://jskharay.wordpress.com/2010/09/25/asp-net-page-life-cycle/#comments</comments>
		<pubDate>Sat, 25 Sep 2010 05:40:53 +0000</pubDate>
		<dc:creator>Jaspreet Singh</dc:creator>
				<category><![CDATA[ASP.NET]]></category>

		<guid isPermaLink="false">http://jskharay.wordpress.com/?p=202</guid>
		<description><![CDATA[When an ASP.NET page runs, the page goes through a life cycle in which it performs a series of processing steps. These include initialization, instantiating controls, restoring and maintaining state, running event handler code, and rendering. It is important for you to understand the page life cycle General Page Life-cycle Stages Life-cycle Events Additional Page [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jskharay.wordpress.com&amp;blog=8241030&amp;post=202&amp;subd=jskharay&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://jskharay.wordpress.com/2010/09/25/asp-net-page-life-cycle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7a45a8dbe9947dcd700f5ca3d67d2177?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">jskharay</media:title>
		</media:content>

		<media:content url="http://www.beansoftware.com/ASP.NET-Tutorials/Images/Page-Life-Cycle-Submit.jpg" medium="image" />
	</item>
		<item>
		<title>CHARINDEX FUNCTION OF SQLSERVER</title>
		<link>http://jskharay.wordpress.com/2010/09/25/charindex-function-of-sqlserver/</link>
		<comments>http://jskharay.wordpress.com/2010/09/25/charindex-function-of-sqlserver/#comments</comments>
		<pubDate>Sat, 25 Sep 2010 05:39:39 +0000</pubDate>
		<dc:creator>Jaspreet Singh</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[DBMS]]></category>
		<category><![CDATA[RDBMS]]></category>
		<category><![CDATA[SQL Helper]]></category>
		<category><![CDATA[Sql Server]]></category>

		<guid isPermaLink="false">http://jskharay.wordpress.com/?p=200</guid>
		<description><![CDATA[step 1: create New Database As Given Below In picture. Step 2: When Your New Database will be created ,Use to him with Given Command or Querey for example –USE DBEMPLOYEE STEP 3: Now Make a Sql Function and Given Him name split with two arguments .which will return a Table with a variable whose [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jskharay.wordpress.com&amp;blog=8241030&amp;post=200&amp;subd=jskharay&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://jskharay.wordpress.com/2010/09/25/charindex-function-of-sqlserver/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7a45a8dbe9947dcd700f5ca3d67d2177?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">jskharay</media:title>
		</media:content>

		<media:content url="http://orientprogrammer.files.wordpress.com/2010/06/5.jpg?w=300&#38;h=211" medium="image">
			<media:title type="html">5</media:title>
		</media:content>

		<media:content url="http://orientprogrammer.files.wordpress.com/2010/06/1.jpg?w=300&#38;h=212" medium="image">
			<media:title type="html">1</media:title>
		</media:content>

		<media:content url="http://orientprogrammer.files.wordpress.com/2010/06/2.jpg?w=300&#38;h=211" medium="image">
			<media:title type="html">2</media:title>
		</media:content>

		<media:content url="http://orientprogrammer.files.wordpress.com/2010/06/3.jpg?w=300&#38;h=212" medium="image">
			<media:title type="html">3</media:title>
		</media:content>

		<media:content url="http://orientprogrammer.files.wordpress.com/2010/06/4.jpg?w=300&#38;h=212" medium="image">
			<media:title type="html">4</media:title>
		</media:content>
	</item>
	</channel>
</rss>
