<?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>If(found) { ReadUntil(true) }</title>
	<atom:link href="http://parwej.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://parwej.wordpress.com</link>
	<description>Asp.Net, C#, WCF, VB.Net, Web Services</description>
	<lastBuildDate>Sun, 20 Nov 2011 17:39:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='parwej.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>If(found) { ReadUntil(true) }</title>
		<link>http://parwej.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://parwej.wordpress.com/osd.xml" title="If(found) { ReadUntil(true) }" />
	<atom:link rel='hub' href='http://parwej.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Active navigation menu for current url</title>
		<link>http://parwej.wordpress.com/2011/11/20/active-navigation-menu-for-current-url/</link>
		<comments>http://parwej.wordpress.com/2011/11/20/active-navigation-menu-for-current-url/#comments</comments>
		<pubDate>Sun, 20 Nov 2011 17:39:35 +0000</pubDate>
		<dc:creator>pahamad</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://parwej.wordpress.com/?p=211</guid>
		<description><![CDATA[Set the active/current menu link based or Url in Jquery: suppose we have menu like: &#160; &#60;div class="nav"&#62; &#60;ul&#62; &#60;li class="active"&#62;&#60;a href="~/url1/"&#62;URL 1&#60;/a&#62; &#60;li&#62;&#60;a href="~/url2/"&#62;URL 2&#60;/a&#62; &#60;li&#62;&#60;a href="~/url3/"&#62;URL 3&#60;/a&#62; &#60;/ul&#62; &#60;/div&#62; and user when clicked on URL 2 then item look as active : $(function(){     var url = window.location.pathname,     urlRegExp = [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=parwej.wordpress.com&amp;blog=7961090&amp;post=211&amp;subd=parwej&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Set the active/current menu link based or Url in Jquery:</p>
<p>suppose we have menu like:</p>
<p>&nbsp;</p>
<pre><code>&lt;div class="nav"&gt;

 &lt;ul&gt;
 &lt;li class="active"&gt;&lt;a href="~/url1/"&gt;URL 1&lt;/a&gt;
 &lt;li&gt;&lt;a href="~/url2/"&gt;URL 2&lt;/a&gt;
 &lt;li&gt;&lt;a href="~/url3/"&gt;URL 3&lt;/a&gt;
 &lt;/ul&gt;

&lt;/div&gt;</code>
and user when clicked on URL 2 then item look as active :

<code>$(function(){

    var url = window.location.pathname,
    urlRegExp = new RegExp(url.replace(/\/$/,'') + "$"); 

     $('#nav a').each(function(){
            if(urlRegExp.test(this.href.replace(/\/$/,''))){
                $(this).addClass('active');
            }
        });

});</code>
<code>
</code>
<code>
</code></pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/parwej.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/parwej.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/parwej.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/parwej.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/parwej.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/parwej.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/parwej.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/parwej.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/parwej.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/parwej.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/parwej.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/parwej.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/parwej.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/parwej.wordpress.com/211/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=parwej.wordpress.com&amp;blog=7961090&amp;post=211&amp;subd=parwej&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://parwej.wordpress.com/2011/11/20/active-navigation-menu-for-current-url/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4c8883ea5470466da8267055a1acfcb3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pahamad</media:title>
		</media:content>
	</item>
		<item>
		<title>Wrap Label Text in asp.net</title>
		<link>http://parwej.wordpress.com/2011/07/08/wrap-label-text-in-asp-net/</link>
		<comments>http://parwej.wordpress.com/2011/07/08/wrap-label-text-in-asp-net/#comments</comments>
		<pubDate>Thu, 07 Jul 2011 21:52:40 +0000</pubDate>
		<dc:creator>pahamad</dc:creator>
				<category><![CDATA[Asp.Net]]></category>
		<category><![CDATA[Word wrap Label]]></category>
		<category><![CDATA[Wrap label Text]]></category>

		<guid isPermaLink="false">http://parwej.wordpress.com/?p=200</guid>
		<description><![CDATA[Today I found one issue with my site, that is a label text was not wrapped and display continued. Found finally working solution:  &#60;div style="float:left;overflow-y:auto;overflow-x:auto; word-break:break-all;"&#62; &#60;asp:Label ID="lbDesc" runat="server" /&#62; &#60;/div&#62;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=parwej.wordpress.com&amp;blog=7961090&amp;post=200&amp;subd=parwej&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Today I found one issue with my site, that is a label text was not wrapped and display continued. Found finally working solution:</p>
<pre> &lt;div style="float:left;overflow-y:auto;overflow-x:auto; word-break:break-all;"&gt;
	&lt;asp:Label ID="lbDesc" runat="server" /&gt;
&lt;/div&gt;</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/parwej.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/parwej.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/parwej.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/parwej.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/parwej.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/parwej.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/parwej.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/parwej.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/parwej.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/parwej.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/parwej.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/parwej.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/parwej.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/parwej.wordpress.com/200/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=parwej.wordpress.com&amp;blog=7961090&amp;post=200&amp;subd=parwej&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://parwej.wordpress.com/2011/07/08/wrap-label-text-in-asp-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4c8883ea5470466da8267055a1acfcb3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pahamad</media:title>
		</media:content>
	</item>
		<item>
		<title>asp.net 4.0 web form routing in iis7</title>
		<link>http://parwej.wordpress.com/2011/07/01/asp-net-4-0-web-form-routing-in-iis7/</link>
		<comments>http://parwej.wordpress.com/2011/07/01/asp-net-4-0-web-form-routing-in-iis7/#comments</comments>
		<pubDate>Fri, 01 Jul 2011 15:51:56 +0000</pubDate>
		<dc:creator>pahamad</dc:creator>
				<category><![CDATA[Asp.Net]]></category>
		<category><![CDATA[IIS7]]></category>
		<category><![CDATA[Asp.Net 4.0 routing]]></category>
		<category><![CDATA[Asp.Net 4.0 web form routing]]></category>

		<guid isPermaLink="false">http://parwej.wordpress.com/?p=192</guid>
		<description><![CDATA[Today I have completed my first phase of the project on Asp.Net 4.0 and I have implemented Web Form routing feature. It was working fine on VS inbuilt IIS server but when I deployed on IIS server, it was not working. I did little bit search on Google and finally found working solution. It may [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=parwej.wordpress.com&amp;blog=7961090&amp;post=192&amp;subd=parwej&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Today I have completed my first phase of the project on Asp.Net 4.0 and I have implemented Web Form routing feature. It was working fine on VS inbuilt IIS server but when I deployed on IIS server, it was not working. I did little bit search on Google and finally found working solution. It may help you in future.</p>
<pre>&lt;modules runAllManagedModulesForAllRequests="true"&gt;
      &lt;add name="UrlRoutingModule" type="System.Web.Routing.UrlRoutingModule,
                    System.Web, Version=4.0.0.0, Culture=neutral,
                    PublicKeyToken=b03f5f7f11d50a3a" /&gt;      
    &lt;/modules&gt;
    &lt;handlers&gt;
      &lt;add
            name="UrlRoutingHandler"
            preCondition="integratedMode"
            verb="*" path="UrlRouting.axd"
            type="System.Web.HttpForbiddenHandler, System.Web,  
              Version=2.0.0.0, Culture=neutral,  
              PublicKeyToken=b03f5f7f11d50a3a"/&gt;
    &lt;/handlers&gt;
</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/parwej.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/parwej.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/parwej.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/parwej.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/parwej.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/parwej.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/parwej.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/parwej.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/parwej.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/parwej.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/parwej.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/parwej.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/parwej.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/parwej.wordpress.com/192/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=parwej.wordpress.com&amp;blog=7961090&amp;post=192&amp;subd=parwej&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://parwej.wordpress.com/2011/07/01/asp-net-4-0-web-form-routing-in-iis7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4c8883ea5470466da8267055a1acfcb3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pahamad</media:title>
		</media:content>
	</item>
		<item>
		<title>RadioButtonList change event in jquery</title>
		<link>http://parwej.wordpress.com/2011/04/28/radiobuttonlist-change-event-in-jquery/</link>
		<comments>http://parwej.wordpress.com/2011/04/28/radiobuttonlist-change-event-in-jquery/#comments</comments>
		<pubDate>Wed, 27 Apr 2011 18:37:02 +0000</pubDate>
		<dc:creator>pahamad</dc:creator>
				<category><![CDATA[Asp.Net]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[RadioButtonList change event]]></category>
		<category><![CDATA[RadioButtonList selected value in jquery]]></category>

		<guid isPermaLink="false">http://parwej.wordpress.com/?p=181</guid>
		<description><![CDATA[Trap RedioButtonList change event in Jqury OR RadioButtonList selected value in Jquery: &#60;asp:RadioButtonList ID="rblBannerType" ClientIDMode="Static" runat="server"  RepeatDirection="Horizontal" &#62; &#60;asp:ListItem Value="image" Selected="True"&#62;Image&#60;/asp:ListItem&#62; &#60;asp:ListItem Text="html" &#62;Html&#60;/asp:ListItem&#62; &#60;/asp:RadioButtonList&#62;  //jquery script &#60;script&#62; $(function () { var t = $("#rblBannerType input:checked").val(); SetBannerType(t); //Banner Type $("#rblBannerType").change(function () { var type = $("#rblBannerType input:checked").val(); SetBannerType(type); }); }); function SetBannerType(type) { if (type == "image") { $("#divImage").show(); $("#divHtml").hide(); } else { $("#divHtml").show(); $("#divImage").hide(); } } &#60;/script&#62;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=parwej.wordpress.com&amp;blog=7961090&amp;post=181&amp;subd=parwej&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<pre>Trap RedioButtonList change event in Jqury OR RadioButtonList selected value in Jquery:

&lt;asp:RadioButtonList ID="rblBannerType" ClientIDMode="Static" runat="server" 
              RepeatDirection="Horizontal" &gt;
    &lt;asp:ListItem Value="image" Selected="True"&gt;Image&lt;/asp:ListItem&gt;
    &lt;asp:ListItem Text="html" &gt;Html&lt;/asp:ListItem&gt;
&lt;/asp:RadioButtonList&gt; 

//jquery script
&lt;script&gt;
	$(function () {
		var t = $("#rblBannerType input:checked").val();
		SetBannerType(t);

		//Banner Type
		$("#rblBannerType").change(function () {
			var type = $("#rblBannerType input:checked").val();
			SetBannerType(type);
		});
	});
	function SetBannerType(type) {
		if (type == "image") {
			$("#divImage").show();
			$("#divHtml").hide();
		}
		else {
			$("#divHtml").show();
			$("#divImage").hide();
		}
	}
&lt;/script&gt;</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/parwej.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/parwej.wordpress.com/181/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/parwej.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/parwej.wordpress.com/181/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/parwej.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/parwej.wordpress.com/181/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/parwej.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/parwej.wordpress.com/181/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/parwej.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/parwej.wordpress.com/181/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/parwej.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/parwej.wordpress.com/181/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/parwej.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/parwej.wordpress.com/181/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=parwej.wordpress.com&amp;blog=7961090&amp;post=181&amp;subd=parwej&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://parwej.wordpress.com/2011/04/28/radiobuttonlist-change-event-in-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4c8883ea5470466da8267055a1acfcb3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pahamad</media:title>
		</media:content>
	</item>
		<item>
		<title>CheckboxList required field validation</title>
		<link>http://parwej.wordpress.com/2011/04/27/checkboxlist-required-validation/</link>
		<comments>http://parwej.wordpress.com/2011/04/27/checkboxlist-required-validation/#comments</comments>
		<pubDate>Wed, 27 Apr 2011 18:26:36 +0000</pubDate>
		<dc:creator>pahamad</dc:creator>
				<category><![CDATA[Asp.Net]]></category>
		<category><![CDATA[Checkboslist required validator]]></category>
		<category><![CDATA[checkboxlist validation]]></category>

		<guid isPermaLink="false">http://parwej.wordpress.com/?p=174</guid>
		<description><![CDATA[Today I came across a situation where I need to validate CheckboxList as required field and found below solution: //Bound list from Database &#60;asp:CheckBoxList ID="chlZones" runat="server" RepeatColumns="5"  RepeatDirection="Horizontal" /&#62; //Create Custom validator that will work as required validator. Profile function &#60;asp:CustomValidator ID="cvalZones" runat="server"  ClientValidationFunction="ValidateZones" ErrorMessage="!!!"  Display="Dynamic" /&#62; //Implement Client method &#60;script&#62; function ValidateZones(source, args) { var chlZones = document.getElementById(''); var chkLista = chlZones.getElementsByTagName("input"); [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=parwej.wordpress.com&amp;blog=7961090&amp;post=174&amp;subd=parwej&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Today I came across a situation where I need to validate CheckboxList as required field and found below solution:</p>
<pre>//Bound list from Database
&lt;asp:CheckBoxList ID="chlZones" runat="server" RepeatColumns="5" 
RepeatDirection="Horizontal" /&gt;
//Create Custom validator that will work as required validator. Profile function
&lt;asp:CustomValidator ID="cvalZones" runat="server" 
ClientValidationFunction="ValidateZones" ErrorMessage="!!!" 
Display="Dynamic" /&gt;

//Implement Client method
&lt;script&gt;
function ValidateZones(source, args) {
		var chlZones = document.getElementById('');
		var chkLista = chlZones.getElementsByTagName("input");
		for (var i = 0; i &lt; chkLista.length; i++) {
			if (chkLista[i].checked) {
				args.IsValid = true;
				return;
			}
		}
		args.IsValid = false;
	}
&lt;/script&gt;</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/parwej.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/parwej.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/parwej.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/parwej.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/parwej.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/parwej.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/parwej.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/parwej.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/parwej.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/parwej.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/parwej.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/parwej.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/parwej.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/parwej.wordpress.com/174/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=parwej.wordpress.com&amp;blog=7961090&amp;post=174&amp;subd=parwej&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://parwej.wordpress.com/2011/04/27/checkboxlist-required-validation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4c8883ea5470466da8267055a1acfcb3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pahamad</media:title>
		</media:content>
	</item>
		<item>
		<title>Application Lifecycle Management</title>
		<link>http://parwej.wordpress.com/2011/03/19/application-lifecycle-management/</link>
		<comments>http://parwej.wordpress.com/2011/03/19/application-lifecycle-management/#comments</comments>
		<pubDate>Fri, 18 Mar 2011 18:56:45 +0000</pubDate>
		<dc:creator>pahamad</dc:creator>
				<category><![CDATA[Project Management]]></category>
		<category><![CDATA[Project life cycle]]></category>

		<guid isPermaLink="false">http://parwej.wordpress.com/?p=170</guid>
		<description><![CDATA[Today I found very good article for Project Management activity and how you can manage your project in very effective manner. I would like to share and you must see once this article and follow it: Integrated planning Traceability of related artifacts Development intelligence Automation and Collaboration Continuous process improvement &#160; http://www.cmcrossroads.com/cm-articles/275-articles/13980-five-imperatives-for-application-lifecycle-management<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=parwej.wordpress.com&amp;blog=7961090&amp;post=170&amp;subd=parwej&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Today I found very good article for Project Management activity and how you can manage your project in very effective manner. I would like to share and you must see once this article and follow it:</p>
<ul>
<li>Integrated planning</li>
<li>Traceability of related artifacts</li>
<li>Development intelligence</li>
<li>Automation and Collaboration</li>
<li>Continuous process improvement</li>
</ul>
<p>&nbsp;</p>
<p><a href="http://www.cmcrossroads.com/cm-articles/275-articles/13980-five-imperatives-for-application-lifecycle-management">http://www.cmcrossroads.com/cm-articles/275-articles/13980-five-imperatives-for-application-lifecycle-management</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/parwej.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/parwej.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/parwej.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/parwej.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/parwej.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/parwej.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/parwej.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/parwej.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/parwej.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/parwej.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/parwej.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/parwej.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/parwej.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/parwej.wordpress.com/170/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=parwej.wordpress.com&amp;blog=7961090&amp;post=170&amp;subd=parwej&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://parwej.wordpress.com/2011/03/19/application-lifecycle-management/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4c8883ea5470466da8267055a1acfcb3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pahamad</media:title>
		</media:content>
	</item>
		<item>
		<title>IE9 Beta download</title>
		<link>http://parwej.wordpress.com/2010/09/16/ie9-beta-download/</link>
		<comments>http://parwej.wordpress.com/2010/09/16/ie9-beta-download/#comments</comments>
		<pubDate>Wed, 15 Sep 2010 19:18:21 +0000</pubDate>
		<dc:creator>pahamad</dc:creator>
				<category><![CDATA[IE]]></category>
		<category><![CDATA[IE9 Beta download]]></category>

		<guid isPermaLink="false">http://parwej.wordpress.com/?p=147</guid>
		<description><![CDATA[Today Microsoft announced IE9 beta released and now available for download in different languages. To get more about it find below URL: http://www.microsoft.com/presspass/presskits/internetexplorer/ Thanks<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=parwej.wordpress.com&amp;blog=7961090&amp;post=147&amp;subd=parwej&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Today Microsoft announced IE9 beta released and now available for download in different languages. To get more about it find below URL:</p>
<p><a href="http://www.microsoft.com/presspass/presskits/internetexplorer/">http://www.microsoft.com/presspass/presskits/internetexplorer/</a></p>
<p>Thanks</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/parwej.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/parwej.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/parwej.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/parwej.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/parwej.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/parwej.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/parwej.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/parwej.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/parwej.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/parwej.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/parwej.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/parwej.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/parwej.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/parwej.wordpress.com/147/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=parwej.wordpress.com&amp;blog=7961090&amp;post=147&amp;subd=parwej&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://parwej.wordpress.com/2010/09/16/ie9-beta-download/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4c8883ea5470466da8267055a1acfcb3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pahamad</media:title>
		</media:content>
	</item>
		<item>
		<title>Increase website ranking on Google Search</title>
		<link>http://parwej.wordpress.com/2010/09/08/increase-website-ranking-on-google-search/</link>
		<comments>http://parwej.wordpress.com/2010/09/08/increase-website-ranking-on-google-search/#comments</comments>
		<pubDate>Wed, 08 Sep 2010 18:10:41 +0000</pubDate>
		<dc:creator>pahamad</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Increate Site ranking]]></category>

		<guid isPermaLink="false">http://parwej.wordpress.com/?p=119</guid>
		<description><![CDATA[To increase the website ranking, we have to follow the certain rules. Since last few last days I was digging into more to get understand the logic behind the google search engine. Found the great article which covers all the rules: http://www.ssw.com.au/SSW/Standards/Rules/RulesToBetterGoogleRankings.aspx#HowGoogleRanksPages Thanks<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=parwej.wordpress.com&amp;blog=7961090&amp;post=119&amp;subd=parwej&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>To increase the website ranking, we have to follow the certain rules. Since last few last days I was digging into more to get understand the logic behind the google search engine.</p>
<p>Found the great article which covers all the rules:</p>
<p><a href="http://www.ssw.com.au/SSW/Standards/Rules/RulesToBetterGoogleRankings.aspx#HowGoogleRanksPages">http://www.ssw.com.au/SSW/Standards/Rules/RulesToBetterGoogleRankings.aspx#HowGoogleRanksPages</a></p>
<p>Thanks</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/parwej.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/parwej.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/parwej.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/parwej.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/parwej.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/parwej.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/parwej.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/parwej.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/parwej.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/parwej.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/parwej.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/parwej.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/parwej.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/parwej.wordpress.com/119/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=parwej.wordpress.com&amp;blog=7961090&amp;post=119&amp;subd=parwej&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://parwej.wordpress.com/2010/09/08/increase-website-ranking-on-google-search/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4c8883ea5470466da8267055a1acfcb3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pahamad</media:title>
		</media:content>
	</item>
		<item>
		<title>JQuery tutorials</title>
		<link>http://parwej.wordpress.com/2010/08/18/jquery-tutorials/</link>
		<comments>http://parwej.wordpress.com/2010/08/18/jquery-tutorials/#comments</comments>
		<pubDate>Wed, 18 Aug 2010 16:52:16 +0000</pubDate>
		<dc:creator>pahamad</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[JQuery resource]]></category>
		<category><![CDATA[JQuery tutorials]]></category>

		<guid isPermaLink="false">http://parwej.wordpress.com/?p=113</guid>
		<description><![CDATA[Hi Guys, I just want to share good resource for JQuery tutorials for beginner and advanced developers. Please find below link: http://blog.themeforest.net/tutorials/jquery-for-absolute-beginners-video-series/<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=parwej.wordpress.com&amp;blog=7961090&amp;post=113&amp;subd=parwej&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hi Guys, I just want to share good resource for JQuery tutorials for beginner and advanced developers. Please find below link:</p>
<p>http://blog.themeforest.net/tutorials/jquery-for-absolute-beginners-video-series/</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/parwej.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/parwej.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/parwej.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/parwej.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/parwej.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/parwej.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/parwej.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/parwej.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/parwej.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/parwej.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/parwej.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/parwej.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/parwej.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/parwej.wordpress.com/113/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=parwej.wordpress.com&amp;blog=7961090&amp;post=113&amp;subd=parwej&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://parwej.wordpress.com/2010/08/18/jquery-tutorials/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4c8883ea5470466da8267055a1acfcb3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pahamad</media:title>
		</media:content>
	</item>
		<item>
		<title>WCF Endpoint Bindings</title>
		<link>http://parwej.wordpress.com/2010/07/18/wcf-endpoint-bindings/</link>
		<comments>http://parwej.wordpress.com/2010/07/18/wcf-endpoint-bindings/#comments</comments>
		<pubDate>Sun, 18 Jul 2010 14:49:41 +0000</pubDate>
		<dc:creator>pahamad</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[WCF]]></category>
		<category><![CDATA[Endpoints]]></category>
		<category><![CDATA[WCF Binding]]></category>

		<guid isPermaLink="false">http://parwej.wordpress.com/?p=104</guid>
		<description><![CDATA[What is the WCF Endpoint Bindings WCf Binding specify how the service can be accessed. Binding can specify not only the protocol used to access the service but an encoding method used to format the message contents. Binding can also specify any security requirements such as Secure Sockets Layer (SSL) or SOAP message security. Follwing are [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=parwej.wordpress.com&amp;blog=7961090&amp;post=104&amp;subd=parwej&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>What is the WCF Endpoint Bindings</strong></p>
<p>WCf Binding specify how the service can be accessed. Binding can specify not only the protocol used to access the service but an encoding method used to format the message contents. Binding can also specify any security requirements such as Secure Sockets Layer (SSL) or SOAP message security.</p>
<p>Follwing are System provide bindings:</p>
<p><strong><span style="text-decoration:underline;">wsFederationHttpBinding</span></strong> </p>
<p>This secure and interoperable binding supports federated security. It supports HTTP and HTTPS transport protocols as well as text and MTOM encoding methods.</p>
<p><strong><span style="text-decoration:underline;">netTcpBinding</span></strong></p>
<p>This secure binding is used to send binary-encoded SOAP messages from one WCF computer to another. It uses Transmission Control Protocol (TCP) and includes support for reliability, transactions, and security.</p>
<p><strong><span style="text-decoration:underline;">netNamedPipeBinding</span></strong></p>
<p>This secure binding should be used on a single WCF computer. Binaryencoded SOAP messages are sent over named pipes.</p>
<p><strong><span style="text-decoration:underline;">netMsmqBinding</span></strong></p>
<p>This queued binding is used to send binary-encoded SOAP messages over MSMQ. Communication should occur between two computers.</p>
<p><strong><span style="text-decoration:underline;">netPeerTcpBinding</span></strong></p>
<p>This secure binding is used for peer-to-peer communication over TCP. Communication should occur between two or more computers.</p>
<p><strong><span style="text-decoration:underline;">msmqIntegrationBinding</span></strong></p>
<p>This interoperable binding can be used for existing MSMQ applications that use COM and native C++ application programming interfaces (APIs).</p>
<p><strong><span style="text-decoration:underline;">basicHttpContextBinding</span></strong></p>
<p>This binding provides support for HTTP cookies and enables SOAP headers to exchange context.</p>
<p><strong><span style="text-decoration:underline;">netTcpContextBinding</span></strong></p>
<p>This secure binding enables SOAP headers to be used in the exchange of content.</p>
<p><strong><span style="text-decoration:underline;">wsHttpContextBinding</span></strong></p>
<p>This secure and interoperable binding enables SOAP headers to exchange context while also supporting reliability, transactions, and security.</p>
<p>The binding you choose also depends on which message-encoding method is required. Some bindings can be encoded as binary, which can yield better performance results. However, binary encoding is not available with all bindings. For services requiring interoperability, plaintext encoding or MTOM is required. Fortunately, you are able to specify multiple endpoints for a service. This means you are not tied to a single method, and the client can use the<br />
best one available.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/parwej.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/parwej.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/parwej.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/parwej.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/parwej.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/parwej.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/parwej.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/parwej.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/parwej.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/parwej.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/parwej.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/parwej.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/parwej.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/parwej.wordpress.com/104/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=parwej.wordpress.com&amp;blog=7961090&amp;post=104&amp;subd=parwej&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://parwej.wordpress.com/2010/07/18/wcf-endpoint-bindings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4c8883ea5470466da8267055a1acfcb3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pahamad</media:title>
		</media:content>
	</item>
	</channel>
</rss>
