<?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>Internet solutions team &#187; c#</title>
	<atom:link href="http://www.isolutionteam.co.uk/tag/c/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.isolutionteam.co.uk</link>
	<description>Write easy solutions, provide easy solutions</description>
	<lastBuildDate>Thu, 29 Jul 2010 14:48:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Validation of web site address on server side using  c-sharp  and Regular expression</title>
		<link>http://www.isolutionteam.co.uk/validation-of-web-site-address-on-server-side-using-c-sharp-and-regular-expression/#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed</link>
		<comments>http://www.isolutionteam.co.uk/validation-of-web-site-address-on-server-side-using-c-sharp-and-regular-expression/#comments</comments>
		<pubDate>Wed, 25 Feb 2009 15:18:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Asp.net]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[c-sharp]]></category>
		<category><![CDATA[regular expression]]></category>
		<category><![CDATA[validation]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[website address validation]]></category>

		<guid isPermaLink="false">http://www.isolutionteam.co.uk/?p=129</guid>
		<description><![CDATA[Validating web site address at server side in asp.net using c-sharp. A detail web site address  validation method where Regular expression is being used for a baisc web addrss validation, then web address is being splitted by dot and forward slash to check if it contains http: and if its defined more than once in [...]]]></description>
		<wfw:commentRss>http://www.isolutionteam.co.uk/validation-of-web-site-address-on-server-side-using-c-sharp-and-regular-expression/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove extra spaces from string using regular expression, asp.net, c#</title>
		<link>http://www.isolutionteam.co.uk/remove-extra-spaces-from-string-using-regular-expression-aspnet-c/#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed</link>
		<comments>http://www.isolutionteam.co.uk/remove-extra-spaces-from-string-using-regular-expression-aspnet-c/#comments</comments>
		<pubDate>Thu, 09 Oct 2008 12:18:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Asp.net]]></category>
		<category><![CDATA[Web development and design]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[.net]]></category>
		<category><![CDATA[asp.net validation regex]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[regular  epxression]]></category>

		<guid isPermaLink="false">http://www.isolutionteam.co.uk/?p=62</guid>
		<description><![CDATA[Removes extra space from the string using Regular expression. public static readonly RegexOptions Options =          RegexOptions.IgnorePatternWhitespace &#124; RegexOptions.Singleline; public string RemoveExtaSpaces(string text) { Regex regex = new Regex(@&#8221;\s{2,}&#8221;, Options); text = regex.Replace(text.Trim(), &#8221; &#8220;); //This line removes extra spaces and make space exactly one. //To remove the  space between the end of a word [...]]]></description>
		<wfw:commentRss>http://www.isolutionteam.co.uk/remove-extra-spaces-from-string-using-regular-expression-aspnet-c/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Power of CLR (Common Language Runtime) + SQL server 2005, Managed Assembly</title>
		<link>http://www.isolutionteam.co.uk/power-of-clr-common-language-runtime-sql-server-2005-managed-assembly/#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed</link>
		<comments>http://www.isolutionteam.co.uk/power-of-clr-common-language-runtime-sql-server-2005-managed-assembly/#comments</comments>
		<pubDate>Fri, 01 Aug 2008 19:30:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[SQL (Structured Query Language)]]></category>
		<category><![CDATA[.net]]></category>
		<category><![CDATA[Asp.net]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[clr]]></category>
		<category><![CDATA[common language runtime]]></category>
		<category><![CDATA[managed assembly]]></category>
		<category><![CDATA[RegEx]]></category>
		<category><![CDATA[regular expression]]></category>
		<category><![CDATA[sql server 2005]]></category>
		<category><![CDATA[vb.net]]></category>

		<guid isPermaLink="false">http://www.isolutionteam.co.uk/?p=38</guid>
		<description><![CDATA[Today I used Managed Assembly to use Regular Expression in SQL server 2005. I wanted to search for all records which contain special characters in my data and some foreign characters so I was using following SQL Query Select OrganisationId,organisationname from organisation Where organisationname like &#8216;%-%&#8217; OR OrganisationName like &#8216;%&#38;%&#8217; OR OrganisationName like &#8216;%(%&#8217; OR [...]]]></description>
		<wfw:commentRss>http://www.isolutionteam.co.uk/power-of-clr-common-language-runtime-sql-server-2005-managed-assembly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fill Array List with All properties of a class</title>
		<link>http://www.isolutionteam.co.uk/fill-array-list-with-all-properties-of-a-class/#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed</link>
		<comments>http://www.isolutionteam.co.uk/fill-array-list-with-all-properties-of-a-class/#comments</comments>
		<pubDate>Wed, 07 May 2008 11:09:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[array]]></category>
		<category><![CDATA[arraylist]]></category>
		<category><![CDATA[Asp.net]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[fill array list]]></category>
		<category><![CDATA[get class properties list]]></category>
		<category><![CDATA[properties]]></category>

		<guid isPermaLink="false">http://www.isolutionteam.co.uk/2008/05/07/fill-array-list-with-all-properties-of-a-class/</guid>
		<description><![CDATA[Following Method/function will return list of class properties in an array list. PropertyInfo class is is used to get the properties of the object passed to the method parameter. You may need to add System.Refelection directive in your page. I am using this in my web development. Microsoft c-sharp , .net, .aspx private ArrayList getPropertis(object [...]]]></description>
		<wfw:commentRss>http://www.isolutionteam.co.uk/fill-array-list-with-all-properties-of-a-class/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reqular experssion RegEx, C# , asp.net , vb.net</title>
		<link>http://www.isolutionteam.co.uk/reqular-experssion-regex-c-aspnet-vbnet/#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed</link>
		<comments>http://www.isolutionteam.co.uk/reqular-experssion-regex-c-aspnet-vbnet/#comments</comments>
		<pubDate>Fri, 25 Apr 2008 15:54:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Asp.net]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[asp.net validation regex]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[programing]]></category>
		<category><![CDATA[regular  epxression]]></category>
		<category><![CDATA[strings]]></category>
		<category><![CDATA[validation]]></category>

		<guid isPermaLink="false">http://www.isolutionteam.co.uk/2008/04/25/reqular-experssion-regex-c-aspnet-vbnet/</guid>
		<description><![CDATA[Regular expression: Regular Expression is a great way to manipulate strings for example matching, finding, validating Data, Specailly string manipulaion becames handy while we use reqular expression. We can use Regular expression on both Serer and client side. We do use it with asp.net validation controls. Charcther matching: . ^ $ * + ? { [...]]]></description>
		<wfw:commentRss>http://www.isolutionteam.co.uk/reqular-experssion-regex-c-aspnet-vbnet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>If you have to provide some services to all users of your website then&#8230;.</title>
		<link>http://www.isolutionteam.co.uk/if-you-have-to-provide-some-services-to-all-users-of-your-website-then/#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed</link>
		<comments>http://www.isolutionteam.co.uk/if-you-have-to-provide-some-services-to-all-users-of-your-website-then/#comments</comments>
		<pubDate>Mon, 21 Apr 2008 12:07:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Asp.net]]></category>
		<category><![CDATA[application object]]></category>
		<category><![CDATA[asp.net application object]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[global.asax]]></category>
		<category><![CDATA[hash table]]></category>
		<category><![CDATA[hashtable]]></category>
		<category><![CDATA[users]]></category>

		<guid isPermaLink="false">http://www.isolutionteam.co.uk/2008/04/21/if-you-have-to-provide-some-services-to-all-users-of-your-website-then/</guid>
		<description><![CDATA[If you have to provide some data or services to all of your web users then best option is to put those data values into applicaiton object. This process will make your application very fast. You can use Global.asax  file and can use  following event.  Following code first puts value into a hashtable and then [...]]]></description>
		<wfw:commentRss>http://www.isolutionteam.co.uk/if-you-have-to-provide-some-services-to-all-users-of-your-website-then/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free books on almost every topic</title>
		<link>http://www.isolutionteam.co.uk/free-books-on-almost-every-topic/#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed</link>
		<comments>http://www.isolutionteam.co.uk/free-books-on-almost-every-topic/#comments</comments>
		<pubDate>Thu, 21 Feb 2008 13:28:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Internet stuff]]></category>
		<category><![CDATA[.net]]></category>
		<category><![CDATA[action script]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[asp]]></category>
		<category><![CDATA[business ebooks]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[cisco network]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[desing]]></category>
		<category><![CDATA[dot net]]></category>
		<category><![CDATA[dreamweaver]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flash training]]></category>
		<category><![CDATA[graphics]]></category>
		<category><![CDATA[j2ee]]></category>
		<category><![CDATA[j2me]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mssql]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[networking training]]></category>
		<category><![CDATA[office]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[ruby on rails]]></category>
		<category><![CDATA[SAP]]></category>
		<category><![CDATA[software development]]></category>
		<category><![CDATA[unix]]></category>
		<category><![CDATA[video training]]></category>
		<category><![CDATA[web construction]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[windows vista]]></category>

		<guid isPermaLink="false">http://www.isolutionteam.co.uk/2008/02/21/free-books-on-almost-every-topic/</guid>
		<description><![CDATA[http://knowfree.net/ You can find free books here on almost every topic. ajax, php, java, c#, asp, networking training, cisco network, photoshop, graphics, desing, web construction, business ebooks, SAP, oracle, mysql, mssql, .net, dot net, j2ee, j2me, linux, unix, windows, windows vista, office, database, programming, software development, video training, dreamweaver, flash, flash training, css, action script, [...]]]></description>
		<wfw:commentRss>http://www.isolutionteam.co.uk/free-books-on-almost-every-topic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
