<?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>Arindam Chakraborty, Asp.Net Developer Architect in Mumbai India</title>
	<atom:link href="http://arindamchakraborty.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://arindamchakraborty.wordpress.com</link>
	<description>Asp.net, Ajax, WCF, JSON Developer in Mumbai India</description>
	<lastBuildDate>Tue, 09 Aug 2011 22:16:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='arindamchakraborty.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Arindam Chakraborty, Asp.Net Developer Architect in Mumbai India</title>
		<link>http://arindamchakraborty.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://arindamchakraborty.wordpress.com/osd.xml" title="Arindam Chakraborty, Asp.Net Developer Architect in Mumbai India" />
	<atom:link rel='hub' href='http://arindamchakraborty.wordpress.com/?pushpress=hub'/>
		<item>
		<title>enum to list in csharp</title>
		<link>http://arindamchakraborty.wordpress.com/2011/08/09/enum-to-list-in-csharp/</link>
		<comments>http://arindamchakraborty.wordpress.com/2011/08/09/enum-to-list-in-csharp/#comments</comments>
		<pubDate>Tue, 09 Aug 2011 22:16:15 +0000</pubDate>
		<dc:creator>Arindam Chakraborty</dc:creator>
				<category><![CDATA[JSON coding utility]]></category>

		<guid isPermaLink="false">http://arindamchakraborty.wordpress.com/?p=105</guid>
		<description><![CDATA[This function will convert any enum to a List object public class EnumHelper { /// &#60; summary &#62; /// Convert enum to a list object. /// &#60; /summary &#62; /// &#60; typeparam name="T" &#62;&#60; /typeparam &#62; /// &#60; returns &#62;&#60; /returns &#62; public static List&#60; T &#62; EnumToList&#60; T &#62;() { Type enumType = typeof(T); [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arindamchakraborty.wordpress.com&amp;blog=7803158&amp;post=105&amp;subd=arindamchakraborty&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<pre>This function will convert any enum to a List object

public class EnumHelper
{
/// &lt;  summary &gt;
/// Convert enum to a list object.
/// &lt;  /summary &gt;
/// &lt;  typeparam name="T" &gt;&lt;  /typeparam &gt;
/// &lt;  returns &gt;&lt;  /returns &gt;
public static List&lt;  T &gt; EnumToList&lt;  T &gt;()
{
	Type enumType = typeof(T);

	// You can't use type constraints on value types, so have to check &amp; throw error.
	if (enumType.BaseType != typeof(Enum))
		throw new ArgumentException("T must be of type System.Enum type");

	Array enumValArray = Enum.GetValues(enumType);

	List&lt;  T &gt; enumValList = new List&lt;  T &gt;(enumValArray.Length);

	foreach (int val in enumValArray)
	{
		enumValList.Add((T)Enum.Parse(enumType, val.ToString()));
	}

	return enumValList;
}

// Now call the function with enum you want to conver into a list  EnumHelper.EnumToList&lt; EventState &gt;()

public static List &lt; EventState &gt; GetEventStates()
{
	List&lt; EventState &gt; eventStates = EnumHelper.EnumToList&lt; EventState &gt;();
		//.FindAll(
		//delegate(EventState x)
		//{
		//    return x != EventState.Cancelled  ;
		//});
	return eventStates;
}</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/arindamchakraborty.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/arindamchakraborty.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/arindamchakraborty.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/arindamchakraborty.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/arindamchakraborty.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/arindamchakraborty.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/arindamchakraborty.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/arindamchakraborty.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/arindamchakraborty.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/arindamchakraborty.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/arindamchakraborty.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/arindamchakraborty.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/arindamchakraborty.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/arindamchakraborty.wordpress.com/105/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arindamchakraborty.wordpress.com&amp;blog=7803158&amp;post=105&amp;subd=arindamchakraborty&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://arindamchakraborty.wordpress.com/2011/08/09/enum-to-list-in-csharp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/330ee7926e2e4be89bb0887d5c65bd2b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">arindamtech</media:title>
		</media:content>
	</item>
		<item>
		<title>Stop subsequent submit button clicks when a earlier request is being processed in ASP.NET</title>
		<link>http://arindamchakraborty.wordpress.com/2011/04/26/stop-subsequent-submit-button-clicks-when-a-earlier-request-is-being-processed-in-asp-net/</link>
		<comments>http://arindamchakraborty.wordpress.com/2011/04/26/stop-subsequent-submit-button-clicks-when-a-earlier-request-is-being-processed-in-asp-net/#comments</comments>
		<pubDate>Tue, 26 Apr 2011 13:49:44 +0000</pubDate>
		<dc:creator>Arindam Chakraborty</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://arindamchakraborty.wordpress.com/?p=102</guid>
		<description><![CDATA[How we can stop the subsequent click when a earlier request is still been processed. here is the javascript code you need to place above your update panel. &#60; script type=&#8221;text/javascript&#8221; language=&#8221;javascript&#8221; &#62;         var requestManager = Sys.WebForms.PageRequestManager.getInstance();         requestManager.add_initializeRequest(StopPostbackOnSubsequentSubmitClicks);         function StopPostbackOnSubsequentSubmitClicks(sender, args) {             if (requestManager.get_isInAsyncPostBack() &#38;   args.get_postBackElement().id == &#8216;&#60;%=btnSubmit.ClientID %&#62;&#8217;)             [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arindamchakraborty.wordpress.com&amp;blog=7803158&amp;post=102&amp;subd=arindamchakraborty&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>How we can stop the subsequent click when a earlier request is still been processed.</p>
<p>here is the javascript code you need to place above your update panel.<br />
&lt; script type=&#8221;text/javascript&#8221; language=&#8221;javascript&#8221; &gt;<br />
        var requestManager = Sys.WebForms.PageRequestManager.getInstance();<br />
        requestManager.add_initializeRequest(StopPostbackOnSubsequentSubmitClicks);</p>
<p>        function StopPostbackOnSubsequentSubmitClicks(sender, args) {<br />
            if (requestManager.get_isInAsyncPostBack() &amp;<br />
  args.get_postBackElement().id == &#8216;&lt;%=btnSubmit.ClientID %&gt;&#8217;)<br />
            {<br />
                args.set_cancel(true);               <br />
                alert(&#8216;Please wait, earlier request is still being processed&#8217;);<br />
            }<br />
        }<br />
    &lt; /script &gt;</p>
<p>Now write your update panel code<br />
  &lt; asp:UpdatePanel runat=&#8221;server&#8221; ID=&#8221;upnlLogin&#8221; UpdateMode=&#8221;Conditional&#8221; &gt;<br />
            &lt; ContentTemplate &gt;<br />
               <br />
  // do whatever you need</p>
<p>  &lt; asp:Button ID=&#8221;btnSubmit&#8221; runat=&#8221;server&#8221; Text=&#8221;Sign in&#8221; CssClass=&#8221;button&#8221; OnClick=&#8221;btnSubmit_Click&#8221; /&gt;<br />
                           <br />
            &lt; /ContentTemplate&gt;<br />
           <br />
        &lt; /asp:UpdatePanel&gt;<br />
        &lt; asp:UpdateProgress AssociatedUpdatePanelID=&#8221;upnlLogin&#8221; runat=&#8221;server&#8221; &gt;<br />
            &lt; ProgressTemplate&gt;<br />
                &lt; img src=&#8221;../Images/spinner.gif&#8221; / &gt;<br />
            &lt; /ProgressTemplate &gt;<br />
        &lt; /asp:UpdateProgress &gt;</p>
<p>// Now see the code behind implementation</p>
<p>protected void btnSubmit_Click(object sender, EventArgs e)<br />
        {</p>
<p>            Thread.Sleep(1000); <br />
 }</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/arindamchakraborty.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/arindamchakraborty.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/arindamchakraborty.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/arindamchakraborty.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/arindamchakraborty.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/arindamchakraborty.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/arindamchakraborty.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/arindamchakraborty.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/arindamchakraborty.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/arindamchakraborty.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/arindamchakraborty.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/arindamchakraborty.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/arindamchakraborty.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/arindamchakraborty.wordpress.com/102/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arindamchakraborty.wordpress.com&amp;blog=7803158&amp;post=102&amp;subd=arindamchakraborty&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://arindamchakraborty.wordpress.com/2011/04/26/stop-subsequent-submit-button-clicks-when-a-earlier-request-is-being-processed-in-asp-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/330ee7926e2e4be89bb0887d5c65bd2b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">arindamtech</media:title>
		</media:content>
	</item>
		<item>
		<title>how to find application root dynamically in asp.net</title>
		<link>http://arindamchakraborty.wordpress.com/2011/03/26/how-to-find-application-root-dynamically-in-asp-net/</link>
		<comments>http://arindamchakraborty.wordpress.com/2011/03/26/how-to-find-application-root-dynamically-in-asp-net/#comments</comments>
		<pubDate>Sat, 26 Mar 2011 09:35:52 +0000</pubDate>
		<dc:creator>Arindam Chakraborty</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[application root dynamically in asp.net]]></category>
		<category><![CDATA[Asp.net]]></category>

		<guid isPermaLink="false">http://arindamchakraborty.wordpress.com/?p=97</guid>
		<description><![CDATA[sometimes you might have experienced some of the images are not appearing on your web page because of inappropriate path. so you need to know the root of the application dynically, because that keep chaning from development server to testing server, testing server to production server. so you just need to do the following. public [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arindamchakraborty.wordpress.com&amp;blog=7803158&amp;post=97&amp;subd=arindamchakraborty&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>sometimes you might have experienced some of the images are not appearing on your web page because of inappropriate path. so you need to know the root of the application dynically, because that keep chaning from development server to testing server, testing server to production server.</p>
<p>so you just need to do the following.</p>
<p>public static string ApplicationRoot<br />
{<br />
get<br />
{<br />
string root = null;<br />
if (HttpContext.Current.Request.ApplicationPath != &#8220;/&#8221;)<br />
root = HttpContext.Current.Request.Url.GetLeftPart(System.UriPartial.Authority) + &#8220;/&#8221; + HttpContext.Current.Request.ApplicationPath;<br />
else<br />
root = HttpContext.Current.Request.Url.GetLeftPart(System.UriPartial.Authority) + &#8220;/&#8221;;</p>
<p>if (!root.EndsWith(&#8220;/&#8221;))<br />
root += &#8220;/&#8221;;</p>
<p>return root;<br />
}<br />
}</p>
<p>now whenever you are adding some image in any usercontrol, and you want to make sure the image is appearing allover the places then just use the following code</p>
<p>&lt; img src=&#8217;&lt; %=ApplicationRoot +&#8221;Images/myImage.jpg&#8221;% &gt;&#8217; &gt;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/arindamchakraborty.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/arindamchakraborty.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/arindamchakraborty.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/arindamchakraborty.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/arindamchakraborty.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/arindamchakraborty.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/arindamchakraborty.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/arindamchakraborty.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/arindamchakraborty.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/arindamchakraborty.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/arindamchakraborty.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/arindamchakraborty.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/arindamchakraborty.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/arindamchakraborty.wordpress.com/97/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arindamchakraborty.wordpress.com&amp;blog=7803158&amp;post=97&amp;subd=arindamchakraborty&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://arindamchakraborty.wordpress.com/2011/03/26/how-to-find-application-root-dynamically-in-asp-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/330ee7926e2e4be89bb0887d5c65bd2b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">arindamtech</media:title>
		</media:content>
	</item>
		<item>
		<title>How to use Extention Method to JSON string</title>
		<link>http://arindamchakraborty.wordpress.com/2011/03/26/how-to-use-extention-method-to-json-string/</link>
		<comments>http://arindamchakraborty.wordpress.com/2011/03/26/how-to-use-extention-method-to-json-string/#comments</comments>
		<pubDate>Sat, 26 Mar 2011 09:33:03 +0000</pubDate>
		<dc:creator>Arindam Chakraborty</dc:creator>
				<category><![CDATA[Extention Method to JSON]]></category>
		<category><![CDATA[Json to object]]></category>

		<guid isPermaLink="false">http://arindamchakraborty.wordpress.com/?p=92</guid>
		<description><![CDATA[Extension method allows you to add new method to the existing class without modifying the code, recompiling or modifying the original code. public static class ExtensionsMethods { public static string Reverse(this string content) { char[] charArray = new char[content.Length]; int len = content.Length &#8211; 1; for (int i = 0; i &#60;= len; i++) { [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arindamchakraborty.wordpress.com&amp;blog=7803158&amp;post=92&amp;subd=arindamchakraborty&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Extension method allows you to add new method to the existing class without modifying the code, recompiling or modifying the original code.</p>
<p>public static class ExtensionsMethods<br />
{</p>
<p>public static string Reverse(this string content)<br />
{<br />
char[] charArray = new char[content.Length];<br />
int len = content.Length &#8211; 1;<br />
for (int i = 0; i &lt;= len; i++)<br />
{<br />
charArray[i] = content[len - i];<br />
}<br />
return new string(charArray);<br />
}</p>
<p>/*Now suppose you want to have some functionality ToJason from all your custom object, you dont have to modify the source code, in the extention method class you just need to add the following line.*/</p>
<p>public static string ToJASON(this object myObject)<br />
{</p>
<p>// you need reference of System.Web.Script.Serialization;<br />
JavaScriptSerializer js = new JavaScriptSerializer();</p>
<p>return js.Serialize(myObject);<br />
}<br />
}</p>
<p>Now lets look at how to use the method</p>
<p>Suppose you have a object called Client</p>
<p>Client client = new Client();<br />
client.Address = &#8220;Client&#8217;s House&#8221;;<br />
client.ClientCode = &#8220;000C123&#8243;;<br />
client.ClientId = 98;<br />
client.ClientName = &#8220;Client the God&#8221;;<br />
client.Email = &#8220;ac@gmail.com&#8221;;</p>
<p>string jsonClient = client.ToJASON();<br />
Response.Write(jsonClient);</p>
<p>the json out put will be :</p>
<p>{&#8220;ClientId&#8221;:98,&#8221;ClientName&#8221;:&#8221;Client the God&#8221;,&#8221;ClientCode&#8221;:&#8221;000C123&#8243;,&#8221;ClientType&#8221;:null,&#8221;Organization&#8221;:null,&#8221;ContactPerson&#8221;:null,&#8221;Phone&#8221;:null,&#8221;Email&#8221;:&#8221;ac@gmail.com&#8221;,&#8221;Address&#8221;:&#8221;Client\u0027s House&#8221;}</p>
<p>// now get a list of client. and make a jasonstring.<br />
string jsonClients = MasterDTO.GetClients().ToJASON() ;<br />
Response.Write(jsonClients);</p>
<p>the output will be<br />
&#8220;}[{"ClientId":0,"ClientName":" Client - 0","ClientCode":"0010","ClientType":null,"Organization":null,"ContactPerson":null,"Phone":" 0Client - 0","Email":" 0Client0@gmail.com","Address":null},{"ClientId":1,"ClientName":" Client - 1","ClientCode":"0011","ClientType":null,"Organization":null,"ContactPerson":null,"Phone":" 1Client - 1","Email":" 1Client1@gmail.com","Address":null},{"ClientId":2,"ClientName":" Client - 2","ClientCode":"0012","ClientType":null,"Organization":null,"ContactPerson":null,"Phone":" 2Client - 2","Email":" 2Client2@gmail.com","Address":null},{"ClientId":3,"ClientName":" Client - 3","ClientCode":"0013","ClientType":null,"Organization":null,"ContactPerson":null,"Phone":" 3Client - 3","Email":" 3Client3@gmail.com","Address":null},{"ClientId":4,"ClientName":" Client - 4","ClientCode":"0014","ClientType":null,"Organization":null,"ContactPerson":null,"Phone":" 4Client - 4","Email":" 4Client4@gmail.com","Address":null},{"ClientId":5,"ClientName":" Client - 5","ClientCode":"0015","ClientType":null,"Organization":null,"ContactPerson":null,"Phone":" 5Client - 5","Email":" 5Client5@gmail.com","Address":null},{"ClientId":6,"ClientName":" Client - 6","ClientCode":"0016","ClientType":null,"Organization":null,"ContactPerson":null,"Phone":" 6Client - 6","Email":" 6Client6@gmail.com","Address":null},{"ClientId":7,"ClientName":" Client - 7","ClientCode":"0017","ClientType":null,"Organization":null,"ContactPerson":null,"Phone":" 7Client - 7","Email":" 7Client7@gmail.com","Address":null},{"ClientId":8,"ClientName":" Client - 8","ClientCode":"0018","ClientType":null,"Organization":null,"ContactPerson":null,"Phone":" 8Client - 8","Email":" 8Client8@gmail.com","Address":null},{"ClientId":9,"ClientName":" Client - 9","ClientCode":"0019","ClientType":null,"Organization":null,"ContactPerson":null,"Phone":" 9Client - 9","Email":" 9Client9@gmail.com","Address":null},{"ClientId":10,"ClientName":" Client - 10","ClientCode":"00110","ClientType":null,"Organization":null,"ContactPerson":null,"Phone":" 10Client - 10","Email":" 10Client10@gmail.com","Address":null}]</p>
<p>Similarly you also can convert the JSON string back to an object form by using the following extention method.</p>
<p>public static object JASONToObject(this string myObjectString)<br />
{<br />
JavaScriptSerializer js = new JavaScriptSerializer();</p>
<p>return js.DeserializeObject(myObjectString);<br />
}</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/arindamchakraborty.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/arindamchakraborty.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/arindamchakraborty.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/arindamchakraborty.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/arindamchakraborty.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/arindamchakraborty.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/arindamchakraborty.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/arindamchakraborty.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/arindamchakraborty.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/arindamchakraborty.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/arindamchakraborty.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/arindamchakraborty.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/arindamchakraborty.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/arindamchakraborty.wordpress.com/92/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arindamchakraborty.wordpress.com&amp;blog=7803158&amp;post=92&amp;subd=arindamchakraborty&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://arindamchakraborty.wordpress.com/2011/03/26/how-to-use-extention-method-to-json-string/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/330ee7926e2e4be89bb0887d5c65bd2b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">arindamtech</media:title>
		</media:content>
	</item>
		<item>
		<title>write join using lambada expression</title>
		<link>http://arindamchakraborty.wordpress.com/2011/02/19/write-join-using-lambada-expression/</link>
		<comments>http://arindamchakraborty.wordpress.com/2011/02/19/write-join-using-lambada-expression/#comments</comments>
		<pubDate>Sat, 19 Feb 2011 18:57:56 +0000</pubDate>
		<dc:creator>Arindam Chakraborty</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[join using lambada expression]]></category>

		<guid isPermaLink="false">http://arindamchakraborty.wordpress.com/?p=88</guid>
		<description><![CDATA[Int64 productInfoId = 0; using (var etgEntities = new DBETNetEntities()) { var result = from profile in etgEntities.TbUserProfile join product in etgEntities.tbProductInfo on profile.UserInfoID equals product.UserInfoID where profile.UserProfileID == userProfileId select product; productInfoId = result.FirstOrDefault().ProductInfoId; } return productInfoId;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arindamchakraborty.wordpress.com&amp;blog=7803158&amp;post=88&amp;subd=arindamchakraborty&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Int64 productInfoId = 0;<br />
using (var etgEntities = new DBETNetEntities())<br />
{</p>
<p>var result = from profile in etgEntities.TbUserProfile<br />
join product in etgEntities.tbProductInfo<br />
on profile.UserInfoID equals product.UserInfoID<br />
where profile.UserProfileID == userProfileId<br />
select product;</p>
<p>productInfoId = result.FirstOrDefault().ProductInfoId;<br />
}<br />
return productInfoId;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/arindamchakraborty.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/arindamchakraborty.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/arindamchakraborty.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/arindamchakraborty.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/arindamchakraborty.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/arindamchakraborty.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/arindamchakraborty.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/arindamchakraborty.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/arindamchakraborty.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/arindamchakraborty.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/arindamchakraborty.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/arindamchakraborty.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/arindamchakraborty.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/arindamchakraborty.wordpress.com/88/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arindamchakraborty.wordpress.com&amp;blog=7803158&amp;post=88&amp;subd=arindamchakraborty&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://arindamchakraborty.wordpress.com/2011/02/19/write-join-using-lambada-expression/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/330ee7926e2e4be89bb0887d5c65bd2b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">arindamtech</media:title>
		</media:content>
	</item>
		<item>
		<title>Read data using DbDataReader Storeprocedure in Entityframework</title>
		<link>http://arindamchakraborty.wordpress.com/2011/02/16/read-data-using-dbdatareader-storeprocedure-in-entityframework/</link>
		<comments>http://arindamchakraborty.wordpress.com/2011/02/16/read-data-using-dbdatareader-storeprocedure-in-entityframework/#comments</comments>
		<pubDate>Wed, 16 Feb 2011 18:28:19 +0000</pubDate>
		<dc:creator>Arindam Chakraborty</dc:creator>
				<category><![CDATA[Entity Framework]]></category>
		<category><![CDATA[Storeprocedure in Entityframework]]></category>

		<guid isPermaLink="false">http://arindamchakraborty.wordpress.com/?p=83</guid>
		<description><![CDATA[How to use  store procedure outputparameter with Entity Framework? Read data using DbDataReader Storeprocedure in Entityframework, we also see how to deal with Output parameter. required namespace using System.Collections.Generic; using System.Data; using System.Data.Objects; using System.Data.SqlClient; using System.Linq; now look at the implementation, its very simple and saves lots of time. public List SearchProduct1(string SearchText, string SearchBy, string [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arindamchakraborty.wordpress.com&amp;blog=7803158&amp;post=83&amp;subd=arindamchakraborty&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>How to use  store procedure outputparameter with Entity Framework?</p>
<p>Read data using DbDataReader Storeprocedure in Entityframework, we also see how to deal with Output parameter.</p>
<p><strong>required namespace </strong><br />
using System.Collections.Generic;<br />
using System.Data;<br />
using System.Data.Objects;<br />
using System.Data.SqlClient;<br />
using System.Linq;</p>
<p>now look at the implementation, its very simple and saves lots of time.</p>
<p>public List SearchProduct1(string SearchText, string SearchBy, string Area, string countryId, int startRowIndex, int maximumRows, ref int TotalRows)<br />
{<br />
List&lt; myProductInfo &gt; objLst = new List&lt; myProductInfo &gt;();<br />
int? _startRowIndex = startRowIndex;<br />
int? _maximumRows = maximumRows;<br />
int? _TotalRows = TotalRows;<br />
int? _contryId = countryId == &#8220;&#8221; ? 0 : Convert.ToInt32(countryId);</p>
<p>try<br />
{<br />
using (var myEntities = new ApplicationEntities())<br />
{<br />
// this is how you can set the output parameter.<br />
ObjectParameter param = new ObjectParameter(&#8220;TotalRows&#8221;, typeof(int));</p>
<p>/* here you probably wondering where the &#8220;SearchProduct&#8221; function come from, well open your edmx file and right click =&gt; import function, now select the sp you want to execute, then write the function name as your business need (ex. SearchProduct)<br />
*/<br />
objLst = myEntities.SearchProduct(SearchText, SearchBy, Area, _contryId, _startRowIndex, _maximumRows, param).ToList&lt; myProductInfo &gt;();</p>
<p> TotalRows = Convert.ToInt32(pTotalRows.Value);<br />
}<br />
}</p>
<p>catch (Exception ex)<br />
{<br />
this.Status = ex.ToString();<br />
}</p>
<p>return objLst;<br />
}</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/arindamchakraborty.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/arindamchakraborty.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/arindamchakraborty.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/arindamchakraborty.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/arindamchakraborty.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/arindamchakraborty.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/arindamchakraborty.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/arindamchakraborty.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/arindamchakraborty.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/arindamchakraborty.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/arindamchakraborty.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/arindamchakraborty.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/arindamchakraborty.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/arindamchakraborty.wordpress.com/83/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arindamchakraborty.wordpress.com&amp;blog=7803158&amp;post=83&amp;subd=arindamchakraborty&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://arindamchakraborty.wordpress.com/2011/02/16/read-data-using-dbdatareader-storeprocedure-in-entityframework/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/330ee7926e2e4be89bb0887d5c65bd2b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">arindamtech</media:title>
		</media:content>
	</item>
		<item>
		<title>Entity Framework example</title>
		<link>http://arindamchakraborty.wordpress.com/2011/01/08/entity-framework-example/</link>
		<comments>http://arindamchakraborty.wordpress.com/2011/01/08/entity-framework-example/#comments</comments>
		<pubDate>Sat, 08 Jan 2011 03:31:26 +0000</pubDate>
		<dc:creator>Arindam Chakraborty</dc:creator>
				<category><![CDATA[Entity Framework]]></category>

		<guid isPermaLink="false">http://arindamchakraborty.wordpress.com/?p=80</guid>
		<description><![CDATA[You need to install sp1 before you can start with entity framework If you can&#8217;t see the framework template, do the following step Click on Tools =&#62; Option =&#62; Projects &#38; Solutions ..then Click on &#8220;User item template location&#8221; browse button and set the right path C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\ItemTemplates\ do same for project [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arindamchakraborty.wordpress.com&amp;blog=7803158&amp;post=80&amp;subd=arindamchakraborty&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>You need to install sp1 before you can start with entity framework</p>
<p><strong>If you can&#8217;t see the framework template, do the following step</strong><br />
Click on Tools =&gt; Option =&gt; Projects &amp; Solutions ..then<br />
Click on &#8220;User item template location&#8221; browse button and set the right path<br />
C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\ItemTemplates\<br />
do same for project templets<br />
C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\ProjectTemplates\<br />
Now click on &#8220;ok&#8221;<br />
then close the studio and re-open again ..now you will be able to see the entity framework template</p>
<p>some more guide step &#8211; by step can be seen on http://www.installationwiki.org/Installing_ADO.NET_Entity_Framework</p>
<p><strong>Getting problem in Connectionstring in Entity framework ?</strong></p>
<p>&lt; add name=&#8221;HRRPMSContext&#8221; providerName=&#8221;System.Data.EntityClient&#8221; connectionString=&#8221;metadata=res://ETG.Base.Applications.EntityFramework,Culture=neutral,PublicKeyToken=null/HRRPMSContext.csdl|res://ETG.Base.Applications.EntityFramework,Culture=neutral,PublicKeyToken=null/HRRPMSContext.ssdl|res://ETG.Base.Applications.EntityFramework,Culture=neutral,PublicKeyToken=null/HRRPMSContext.msl;provider=System.Data.SqlClient;provider connection string=&#8217;Data Source=ETG1\SQLEXPRESS;;Initial Catalog=ACSampleDB;User ID=HRRPMS;Password=pass;Integrated Security=True;multipleactiveresultsets=true&#8217;&#8221;/ &gt;</p>
<p>In the above string ETG.Base.Applications.EntityFramework is my assembly name ETG.Base.Applications.EntityFramework.dll</p>
<p><strong>Fetching a collection using entity framework.</strong><br />
public static List&lt; tbCandidate&gt; GetAllCandidates()<br />
{<br />
List&lt; tbCandidate &gt; candidates = new List&lt; tbCandidate&gt;(); ;</p>
<p>using (var hrEntities = new HRRPMSContext())<br />
{<br />
foreach (var candidate in hrEntities.tbCandidate)<br />
{<br />
candidates.Add(candidate);<br />
}<br />
}</p>
<p>return candidates;</p>
<p>}</p>
<p><strong>Adding data example :</strong><br />
public static void SetData()<br />
{<br />
tbCandidate candidate = new tbCandidate();<br />
candidate.Name = &#8220;Arindam Chakraborty&#8221;;<br />
candidate.Phone = &#8220;11545645656&#8243;;<br />
candidate.Qualification = &#8220;B.Sc&#8221;;<br />
candidate.Street = &#8220;New Golden Nest&#8221;;<br />
Add(candidate);</p>
<p>}</p>
<p>public static void Add(tbCandidate obj)<br />
{<br />
using (var hrEntities = new HRRPMSContext())<br />
{<br />
hrEntities.AddTotbCandidate(obj);<br />
hrEntities.SaveChanges();<br />
}<br />
}</p>
<p><strong>Find a candidate by name from database</strong><br />
public static tbCandidate FindCndidateByName(string name)<br />
{<br />
tbCandidate candidate = null;</p>
<p>using (var hrEntities = new HRRPMSContext())<br />
{<br />
candidate = hrEntities.tbCandidate.FirstOrDefault(c =&gt; c.Name == name);<br />
}</p>
<p>return candidate;</p>
<p>}</p>
<p><strong>Update a candidate information </strong></p>
<p>public static void Update(tbCandidate updatedCandidate)<br />
{</p>
<p>using (var hrEntities = new HRRPMSContext())<br />
{<br />
tbCandidate candidate = hrEntities.tbCandidate.FirstOrDefault(c =&gt; c.CandidateID == updatedCandidate.CandidateID);<br />
candidate = updatedCandidate;<br />
hrEntities.tbCandidate.Context.ApplyPropertyChanges(&#8220;tbCandidate&#8221;, candidate);<br />
hrEntities.tbCandidate.Context.SaveChanges();<br />
}<br />
}</p>
<p><strong>Add Data in many tables with transaction scope</strong><br />
public static void AddMultipleRecord(tbInterview interview, tbRequirement requirement)<br />
{</p>
<p>using (TransactionScope scope = new TransactionScope())<br />
{<br />
using (var hrEntities = new HRRPMSContext())<br />
{</p>
<p>hrEntities.AddTotbInterview(interview);<br />
hrEntities.AddTotbRequirement(requirement);</p>
<p>hrEntities.SaveChanges();<br />
scope.Complete();<br />
}<br />
}<br />
}</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/arindamchakraborty.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/arindamchakraborty.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/arindamchakraborty.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/arindamchakraborty.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/arindamchakraborty.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/arindamchakraborty.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/arindamchakraborty.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/arindamchakraborty.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/arindamchakraborty.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/arindamchakraborty.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/arindamchakraborty.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/arindamchakraborty.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/arindamchakraborty.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/arindamchakraborty.wordpress.com/80/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arindamchakraborty.wordpress.com&amp;blog=7803158&amp;post=80&amp;subd=arindamchakraborty&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://arindamchakraborty.wordpress.com/2011/01/08/entity-framework-example/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/330ee7926e2e4be89bb0887d5c65bd2b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">arindamtech</media:title>
		</media:content>
	</item>
		<item>
		<title>FirstCoder, a utility for C# developer</title>
		<link>http://arindamchakraborty.wordpress.com/2010/09/01/firstcoder-a-utility-for-c-developer/</link>
		<comments>http://arindamchakraborty.wordpress.com/2010/09/01/firstcoder-a-utility-for-c-developer/#comments</comments>
		<pubDate>Wed, 01 Sep 2010 18:26:44 +0000</pubDate>
		<dc:creator>Arindam Chakraborty</dc:creator>
				<category><![CDATA[HBM Coding Utility]]></category>
		<category><![CDATA[JSON coding utility]]></category>
		<category><![CDATA[WCF Coding Utility]]></category>

		<guid isPermaLink="false">http://arindamchakraborty.wordpress.com/?p=65</guid>
		<description><![CDATA[Introdcuing an Utility that can reduce your work load specially if you are working in asp.net C#, Just connect your database ..and a few clicks all your business objects are ready to be used. I have seen at least 40% of our time we spend in doing few standard functions for all the application we develop in our lifetime, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arindamchakraborty.wordpress.com&amp;blog=7803158&amp;post=65&amp;subd=arindamchakraborty&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Introdcuing an Utility that can reduce your work load specially if you are working in asp.net C#, Just connect your database ..and a few clicks all your business objects are ready to be used.</p>
<p>I have seen at least 40% of our time we spend in doing few standard functions for all the application we develop in our lifetime, sometimes I feel tired doing same monotonous task,  i don&#8217;t believe in doing any job which can be automated, let the utility do all task for you&#8230;.just relax!</p>
<p>I am sure many of you might have experienced the same.  </p>
<p>Here I have identified few tasks for the same reason, and automated for all the following task for you.</p>
<p><strong>Java Script Objects</strong>: The utility writes java script for all your business objects with few standard methods in it, like addToList(), removeFromList(), getById(id),  getAll(),</p>
<p><strong>JSON</strong>: The utility writes Json structure for all your business objects with few standard methods in it. Like Save, Get. I keep the JSON structure ready, you just need to set the value from your page control and you are done! JSON can make call to web service or WCF service.</p>
<p><strong>WCF / Web Service</strong>:  The utility creates wcf service for your entire object with a hosting plan on IIS and one page for service registration.</p>
<p><strong>HBM</strong>: The utility gets your entire basic HBM ready within in a minute; I take care of id, composite key, one to many, one to one etc.</p>
<p><strong>Business Entity</strong>: Write all business entity with custom attribute like wcf compatible, n-hibernate compatible.</p>
<p><strong>Data Objects Structure</strong>: You must have seen often we change our database object structure during the development, but never update our technical specification, so here the utility create a document for all tables, views &amp; procedures. </p>
<p>Once you standardize the definition, the utility  produce exactly the same, you don’t have to spend time in object creation &amp; to review them, and thus the utility also save some time, so more quickly you can concentrate on core business area.</p>
<p><strong>Here is the link to<a title="FirstCoder for C# Developer" href="https://docs.google.com/leaf?id=0BxU79KhpURHAY2U3MjY4MzktNTZkOC00MjhiLTkzNTMtZGQ3ZDdjZGYwMDNh" target="_blank"> download the utility</a> </strong></p>
<p><strong><span style="text-decoration:underline;">Upcoming Features :<br />
</span></strong>1. Format all projects code at one click.<br />
2. Identify all areas where function definition has not been written<br />
3. Generate a report all of all function details, so we can identify if any duplicate function written or naming convention are incorrect, that may help to save the review time.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/arindamchakraborty.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/arindamchakraborty.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/arindamchakraborty.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/arindamchakraborty.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/arindamchakraborty.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/arindamchakraborty.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/arindamchakraborty.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/arindamchakraborty.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/arindamchakraborty.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/arindamchakraborty.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/arindamchakraborty.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/arindamchakraborty.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/arindamchakraborty.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/arindamchakraborty.wordpress.com/65/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arindamchakraborty.wordpress.com&amp;blog=7803158&amp;post=65&amp;subd=arindamchakraborty&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://arindamchakraborty.wordpress.com/2010/09/01/firstcoder-a-utility-for-c-developer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/330ee7926e2e4be89bb0887d5c65bd2b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">arindamtech</media:title>
		</media:content>
	</item>
		<item>
		<title>edit data in dataset finally save in database</title>
		<link>http://arindamchakraborty.wordpress.com/2010/03/16/edit-data-in-dataset-finally-save-in-database/</link>
		<comments>http://arindamchakraborty.wordpress.com/2010/03/16/edit-data-in-dataset-finally-save-in-database/#comments</comments>
		<pubDate>Tue, 16 Mar 2010 14:21:30 +0000</pubDate>
		<dc:creator>Arindam Chakraborty</dc:creator>
				<category><![CDATA[Edit dataset]]></category>
		<category><![CDATA[edit data in dataset finally save in database]]></category>

		<guid isPermaLink="false">http://arindamchakraborty.wordpress.com/?p=61</guid>
		<description><![CDATA[edit data in dataset finally save in database<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arindamchakraborty.wordpress.com&amp;blog=7803158&amp;post=61&amp;subd=arindamchakraborty&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I was just thinking of sharing the this peice of code, nothing much simply editing data in dataset and finally submitting in data in database, also addressing the  concurrency problem inmy next article .. direct implementation ..take a look at url below.</p>
<p> <a href="http://www.etgconsultancy.com/AspNetControls/Edit-gridview-save-dataset-to-database.aspx">http://www.etgconsultancy.com/AspNetControls/Edit-gridview-save-dataset-to-database.aspx</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/arindamchakraborty.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/arindamchakraborty.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/arindamchakraborty.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/arindamchakraborty.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/arindamchakraborty.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/arindamchakraborty.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/arindamchakraborty.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/arindamchakraborty.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/arindamchakraborty.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/arindamchakraborty.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/arindamchakraborty.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/arindamchakraborty.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/arindamchakraborty.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/arindamchakraborty.wordpress.com/61/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arindamchakraborty.wordpress.com&amp;blog=7803158&amp;post=61&amp;subd=arindamchakraborty&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://arindamchakraborty.wordpress.com/2010/03/16/edit-data-in-dataset-finally-save-in-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/330ee7926e2e4be89bb0887d5c65bd2b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">arindamtech</media:title>
		</media:content>
	</item>
		<item>
		<title>Journery started with LAMP</title>
		<link>http://arindamchakraborty.wordpress.com/2009/10/05/journery-started-with-lamp/</link>
		<comments>http://arindamchakraborty.wordpress.com/2009/10/05/journery-started-with-lamp/#comments</comments>
		<pubDate>Mon, 05 Oct 2009 12:10:13 +0000</pubDate>
		<dc:creator>Arindam Chakraborty</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[LAMP developer in india]]></category>
		<category><![CDATA[php ajax developer in india]]></category>
		<category><![CDATA[php developer in india]]></category>
		<category><![CDATA[php jquery in india]]></category>

		<guid isPermaLink="false">http://arindamchakraborty.wordpress.com/?p=44</guid>
		<description><![CDATA[I did php development for only a few months, 6 years back. After that i never got a chance to look at php further, during that small development experience i realised that i can make a long &#38; healthy journey with php. But somewhow that didn’t happen, rather i have made my journey with .net [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arindamchakraborty.wordpress.com&amp;blog=7803158&amp;post=44&amp;subd=arindamchakraborty&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I did php development for only a few months, 6 years back. After that i never got a chance to look at php further, during that small development experience i realised that i can make a long &amp; healthy journey with php. But somewhow that didn’t happen, rather i have made my journey with .net framework.. so far journey was not bad.</p>
<p>But now i have got the chance to taste the old essence again, this time I really don&#8217;t want to miss the opportunity. I wish to look at php more passionately. I will keep posting my php journey on <a href="http://etgconsultancy.com/Php">http://etgconsultancy.com/Php</a> . Very soon i write on php jquery, php ajax, <a href="http://etgconsultancy.com/Php/Oops-in-php.aspx">php oops</a>, <a href="http://etgconsultancy.com/Php/Custom-object-in-php.aspx">how to deal with customobject in php</a>, php with xml &#8230;any many more to talk about.</p>
<p>Nowdays many small companies, web start ups and web designers that don&#8217;t have any <a title="Freelance php mysql developer" href="http://etgconsultancy.com/Php/" target="_blank">PHP programming </a>experience, most of these people need to hire a full time programmer. They need some programming done, for a short amount of time. <a title="Freelance php developer in mumbai" href="http://etgconsultancy.com/Php/" target="_blank">ETG Consultancy</a> help them to achive their goal.</p>
<p>We have a team of experienced, reliable and <a title="Php oops developer" href="http://etgconsultancy.com/Php/Custom-object-in-php.aspx" target="_blank">professional php developer</a>,  We work remotely on your project until it is completed to your specifications. We are always available for ongoing support after a project is finished. You can count on us to get your project completed.</p>
<p>Whatever PHP programming you need, I can accomodate you. Contact me to discuss your project. Build your business site or personal website in PHP MySQL</p>
<p>Conatct me for your quick solution on <a href="http://etgconsultancy.com">http://etgconsultancy.com</a></p>
<p>Arindam Chakraborty</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/arindamchakraborty.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/arindamchakraborty.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/arindamchakraborty.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/arindamchakraborty.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/arindamchakraborty.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/arindamchakraborty.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/arindamchakraborty.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/arindamchakraborty.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/arindamchakraborty.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/arindamchakraborty.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/arindamchakraborty.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/arindamchakraborty.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/arindamchakraborty.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/arindamchakraborty.wordpress.com/44/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arindamchakraborty.wordpress.com&amp;blog=7803158&amp;post=44&amp;subd=arindamchakraborty&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://arindamchakraborty.wordpress.com/2009/10/05/journery-started-with-lamp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/330ee7926e2e4be89bb0887d5c65bd2b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">arindamtech</media:title>
		</media:content>
	</item>
	</channel>
</rss>
