<?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"
	>

<channel>
	<title>Zoom Asp.net</title>
	<atom:link href="http://blog.zoomasp.net/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://blog.zoomasp.net</link>
	<description>Zoom Towards Perfection</description>
	<pubDate>Fri, 30 Jul 2010 13:41:26 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.5</generator>
	<language>en</language>
			<item>
		<title>Quick guide to sql server analysis service and generation of cube</title>
		<link>http://blog.zoomasp.net/?p=52</link>
		<comments>http://blog.zoomasp.net/?p=52#comments</comments>
		<pubDate>Fri, 30 Jul 2010 13:40:09 +0000</pubDate>
		<dc:creator>chintan prajapati</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[Business Inteligence]]></category>

		<category><![CDATA[CUBE]]></category>

		<category><![CDATA[OLAP]]></category>

		<category><![CDATA[OLTP]]></category>

		<category><![CDATA[SSAS]]></category>

		<guid isPermaLink="false">http://blog.zoomasp.net/?p=52</guid>
		<description><![CDATA[Following article / example / videos will be useful to one who is new to SSAS and world of Cube.
http://en.wikipedia.org/wiki/OLAP
http://en.wikipedia.org/wiki/Multidimensional_Expressions
http://sqlserverpedia.com/wiki/SQL_Server_Analysis_Services_Section
http://aspalliance.com/1728_SQL_Server_Analysis_Services_Concepts.2
http://www.microsoft.com/msj/0899/mdx/mdx.aspx
http://msdn.microsoft.com/en-us/library/ms173767(SQL.90).aspx
Example connection
http://forums.asp.net/p/1185897/2029392.aspx
with screenshots
http://www.packtpub.com/article/creating-analysis-services-cube-visual-studio-2008-part1
http://www.packtpub.com/article/creating-analysis-services-cube-visual-studio-2008-part2
With screenshot and Zip of database and analysis service project sample
http://www.aspxtutorial.com/?tag=/Analysis-Services-Project
http://www.codeproject.com/KB/database/Market-Basket-Analysis.aspx
quick video guide
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;
Creating an Analysis Services Project (SQL Server Video)
http://msdn.microsoft.com/en-us/library/cc952925%28SQL.100%29.aspx
Defining and Deploying a Cube (SQL Server Video)
http://msdn.microsoft.com/en-us/library/cc952924%28SQL.100%29.aspx
Business Intelligence Demonstration with case study of court
http://www.youtube.com/watch?v=-j5J7lXav7Y
Just [...]]]></description>
			<content:encoded><![CDATA[<p>Following article / example / videos will be useful to one who is new to SSAS and world of Cube.</p>
<p>http://en.wikipedia.org/wiki/OLAP<br />
http://en.wikipedia.org/wiki/Multidimensional_Expressions<br />
http://sqlserverpedia.com/wiki/SQL_Server_Analysis_Services_Section</p>
<p>http://aspalliance.com/1728_SQL_Server_Analysis_Services_Concepts.2<br />
http://www.microsoft.com/msj/0899/mdx/mdx.aspx<br />
http://msdn.microsoft.com/en-us/library/ms173767(SQL.90).aspx</p>
<p><strong>Example connection</strong><br />
http://forums.asp.net/p/1185897/2029392.aspx<br />
<strong>with screenshots</strong><br />
http://www.packtpub.com/article/creating-analysis-services-cube-visual-studio-2008-part1<br />
http://www.packtpub.com/article/creating-analysis-services-cube-visual-studio-2008-part2<br />
With screenshot and Zip of database and analysis service project sample<br />
http://www.aspxtutorial.com/?tag=/Analysis-Services-Project</p>
<p>http://www.codeproject.com/KB/database/Market-Basket-Analysis.aspx</p>
<p><strong>quick video guide</strong><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
Creating an Analysis Services Project (SQL Server Video)<br />
http://msdn.microsoft.com/en-us/library/cc952925%28SQL.100%29.aspx<br />
Defining and Deploying a Cube (SQL Server Video)<br />
http://msdn.microsoft.com/en-us/library/cc952924%28SQL.100%29.aspx<br />
Business Intelligence Demonstration with case study of court<br />
http://www.youtube.com/watch?v=-j5J7lXav7Y</p>
<p><strong>Just What Are Cubes Anyway? (A Painless Introduction to OLAP Technology)</strong><br />
http://msdn.microsoft.com/en-us/library/aa140038%28office.10%29.aspx <strong><em>(One of the best article)</em></strong></p>
<p><strong>How Do I BI videos from microsoft</strong><br />
http://www.microsoft.com/events/series/bi.aspx?tab=videos</p>
<p>please let me know if any link is broken and of course if u find better learning resource.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.zoomasp.net/?feed=rss2&amp;p=52</wfw:commentRss>
		</item>
		<item>
		<title>Copy all session values to Dictionary</title>
		<link>http://blog.zoomasp.net/?p=48</link>
		<comments>http://blog.zoomasp.net/?p=48#comments</comments>
		<pubDate>Fri, 30 Jul 2010 13:29:20 +0000</pubDate>
		<dc:creator>chintan prajapati</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.zoomasp.net/?p=48</guid>
		<description><![CDATA[This article applies to those who are using threading or web services where session values are not supported.
and somehow we need access to all session values in form of keyValue pair.
Here is the solution
 Dictionary objDict = new Dictionary();
IEnumerator Keys = Session.Keys.GetEnumerator();
while (Keys.MoveNext())
{
objDict.Add(Keys.Current.ToString(), Session[Keys.Current.ToString()]);
}
foreach (KeyValuePair entry in objDict)
{
Response.Write(entry.Key + &#8220;=&#8221; + entry.Value +&#8221;&#60;br/&#62;&#8221; );
}
]]></description>
			<content:encoded><![CDATA[<p>This article applies to those who are using threading or web services where session values are not supported.</p>
<p>and somehow we need access to all session values in form of keyValue pair.</p>
<p>Here is the solution</p>
<blockquote><p><code> Dictionary objDict = new Dictionary();</code></p>
<p>IEnumerator Keys = Session.Keys.GetEnumerator();<br />
while (Keys.MoveNext())<br />
{<br />
objDict.Add(Keys.Current.ToString(), Session[Keys.Current.ToString()]);<br />
}</p>
<p>foreach (KeyValuePair entry in objDict)<br />
{<br />
Response.Write(entry.Key + &#8220;=&#8221; + entry.Value +&#8221;&lt;br/&gt;&#8221; );<br />
}</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://blog.zoomasp.net/?feed=rss2&amp;p=48</wfw:commentRss>
		</item>
		<item>
		<title>KISS, Worse is better !!</title>
		<link>http://blog.zoomasp.net/?p=40</link>
		<comments>http://blog.zoomasp.net/?p=40#comments</comments>
		<pubDate>Thu, 04 Dec 2008 19:23:20 +0000</pubDate>
		<dc:creator>chintan prajapati</dc:creator>
		
		<category><![CDATA[ASP.net]]></category>

		<category><![CDATA[Google]]></category>

		<category><![CDATA[good to know]]></category>

		<category><![CDATA[Keep it simple]]></category>

		<category><![CDATA[New Jersey]]></category>

		<category><![CDATA[Richard P. Gabriel]]></category>

		<category><![CDATA[Software engineering principle]]></category>

		<guid isPermaLink="false">http://blog.zoomasp.net/?p=40</guid>
		<description><![CDATA[



Image by machado17 via Flickr



Kiss !! no its not that its kiss principle,
means Keep It Simple, Stupid (KISS)
which says that design simplicity should be a key goal and unnecessary complexity should be avoided. It serves as a useful principle in a wide array of disciplines, mainly in software development, because sometimes we end up building [...]]]></description>
			<content:encoded><![CDATA[<div class="zemanta-img" style="margin: 1em; float: right; display: block;">
<div>
<dl class="wp-caption" style="width: 250px;">
<dt class="wp-caption-dt"><a href="http://www.flickr.com/photos/98223054@N00/118128555"><img title="The Kiss" src="http://farm1.static.flickr.com/55/118128555_824bebbf91_m.jpg" alt="The Kiss" width="240" height="179" /></a></dt>
<dd class="wp-caption-dd zemanta-img-attribution" style="font-size: 0.8em;">Image by <a href="http://www.flickr.com/photos/98223054@N00/118128555">machado17</a> via Flickr</dd>
</dl>
</div>
</div>
<p>Kiss !! no its not that its <strong>kiss principle</strong>,</p>
<p>means <strong>Keep It Simple, Stupid (KISS)</strong></p>
<p>which says that design simplicity should be a key goal and unnecessary complexity should be avoided. It serves as a useful principle in a wide array of disciplines, mainly in software development, because sometimes we end up building something stupid and complex software which is no way usable by actual user and there&#8217;s no way we back to redesign whole stuff.</p>
<p>some people also describe it as <strong>&#8220;Keep It Sweet &amp; Simple&#8221;</strong>, <strong>&#8220;Keep It Short &amp; Simple&#8221;</strong>, and <strong>&#8220;Keep It Super-Simple&#8221;</strong>.</p>
<p><strong>New Jersey style</strong></p>
<div class="zemanta-img zemanta-action-dragged" style="margin: 1em; float: right; display: block;">
<div>
<dl class="wp-caption" style="width: 250px;">
<dt class="wp-caption-dt"><a href="http://www.flickr.com/photos/7762644@N04/2354354362"><img title="When Utensils Go Bad" src="http://farm4.static.flickr.com/3067/2354354362_a61b1a4a3d_m.jpg" alt="When Utensils Go Bad" width="240" height="213" /></a></dt>
<dd class="wp-caption-dd zemanta-img-attribution" style="font-size: 0.8em;">Image by <a href="http://www.flickr.com/photos/7762644@N04/2354354362">nickwheeleroz</a> via Flickr</dd>
</dl>
</div>
</div>
<p><strong>Worse is better</strong>, also called the <strong>New Jersey style </strong>was conceived by Richard P. Gabriel to describe the dynamics of software acceptance but it has broader application. The phrase is a play on words representing the concept that &#8220;quality&#8221; is relative. Because of this, something can be &#8220;inferior&#8221; but still &#8220;better&#8221;.</p>
<p>For example, to a particular market or user, software that is limited but exceptionally simple to use may be &#8220;better&#8221; than software that is more comprehensive but harder to use.</p>
<p><strong>You Ain&#8217;t Gonna Need It (YAGNI)<br />
</strong></p>
<p>In <a title="Software engineering" href="http://en.wikipedia.org/wiki/Software_engineering">software engineering</a>, <strong>YAGNI</strong>, short for &#8216;You Ain&#8217;t Gonna Need It&#8217;, suggests to programmers that they should not add functionality until it is necessary. <a title="Ron Jeffries" href="http://en.wikipedia.org/wiki/Ron_Jeffries">Ron Jeffries</a> writes, &#8220;Always implement things when you actually need them, never when you just foresee that you need them.<br />
<strong>Don&#8217;t repeat yourself (DRY</strong>)<br />
particularly in <a title="Computing" href="http://en.wikipedia.org/wiki/Computing">computing</a>. The philosophy emphasizes that <a title="Information" href="http://en.wikipedia.org/wiki/Information">information</a> should not be duplicated, because duplication increases the difficulty of change, may decrease clarity, and leads to opportunities for <a class="mw-redirect" title="Inconsistency" href="http://en.wikipedia.org/wiki/Inconsistency">inconsistency</a>. When the DRY principle is applied successfully, a modification of any single element of a system does not change other logically-unrelated elements. Additionally, elements that are logically related all change predictably and uniformly, and are thus kept in <a title="Synchronization" href="http://en.wikipedia.org/wiki/Synchronization">sync</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.zoomasp.net/?feed=rss2&amp;p=40</wfw:commentRss>
		</item>
		<item>
		<title>Asp.net MVC vs WebForms -Advantage disadvantage</title>
		<link>http://blog.zoomasp.net/?p=32</link>
		<comments>http://blog.zoomasp.net/?p=32#comments</comments>
		<pubDate>Thu, 27 Nov 2008 20:42:05 +0000</pubDate>
		<dc:creator>chintan prajapati</dc:creator>
		
		<category><![CDATA[ASP.net]]></category>

		<category><![CDATA[ADVANTAGE DISADVANTAGE]]></category>

		<category><![CDATA[ASP.Net MVC]]></category>

		<category><![CDATA[Drowback of asp.net MVC]]></category>

		<category><![CDATA[MODEL VIEW CONTROLLER]]></category>

		<category><![CDATA[Pros &amp; cons of ASP.net MVC]]></category>

		<category><![CDATA[Pros and cons of ASP.net MVC]]></category>

		<category><![CDATA[REST]]></category>

		<guid isPermaLink="false">http://127.0.0.1/w/blog.zoomasp.net/?p=32</guid>
		<description><![CDATA[Asp.net MVC seems very easy but it&#8217;s not because we are used to Webforms.. MVC&#8217;s got lots of advantage over Normal Webform style.
like Webform

does Postback (which adds unnecessary more than 20 kb of  javascript )
has Viewstate (performance issue)
has to go through whole page life cycle
Uses Event based model

which are stuffs built by microsoft guys to [...]]]></description>
			<content:encoded><![CDATA[<p>Asp.net MVC seems very easy but it&#8217;s not because we are used to Webforms.. MVC&#8217;s got lots of advantage over Normal Webform style.</p>
<p>like Webform<a href="http://blog.codeville.net/blogfiles/2007/ASPNET-MVC-Pipeline/ASP.NET%20MVC%20Pipeline.jpg"><img class="alignright" title="MVC diagram" src="http://blog.codeville.net/blogfiles/2007/ASPNET-MVC-Pipeline/ASP.NET%20MVC%20Pipeline.jpg" alt="" width="274" height="412" /></a></p>
<ul>
<li>does Postback (which adds unnecessary more than 20 kb of  javascript )</li>
<li>has Viewstate (performance issue)</li>
<li>has to go through whole page life cycle</li>
<li>Uses Event based model</li>
</ul>
<p>which are stuffs built by microsoft guys to simplify development for VB 6 User which are really not required to make a great site, although i appreciate those thing because it  helps in rapid development.</p>
<p>Where As Asp.net MVC is</p>
<ul>
<li>RESTful architecture</li>
<li>Doesn&#8217;t Compromise with Performance and flexibility</li>
<li>Search Engine Friendly</li>
<li>Provides full control over application</li>
</ul>
<p>drowback of RESTful architecture of ASP.net MVC</p>
<ul>
<li>Any public method in a controller is exposed as a controller action. You need to be careful about this. This means that any public method contained in a controller can be invoked by anyone with access to the Internet by entering the right URL into a browser. e.g. wwwxyz.com/shop/delete/10  will delete shop with ID 10.</li>
</ul>
<p>Here are few KB articles &amp; resources  that you should not miss</p>
<p>http://en.wikipedia.org/wiki/ASP.NET_MVC_Framework</p>
<p>http://en.wikipedia.org/wiki/Representational_State_Transfer</p>
<p>http://www.asp.net/learn/mvc-videos/</p>
<p>More detail on REST http://www.xfront.com/REST-Web-Services.html</p>
<p>How REST works? -&gt; http://www.intertwingly.net/wiki/pie/RestAspNetExample</p>
<p>Download beta MVC framework http://www.microsoft.com/downloads/details.aspx?FamilyId=A24D1E00-CD35-4F66-BAA0-2362BDDE0766&amp;displaylang=en</p>
<p>Feel free to comment if any doubt</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Zemified by Zemanta" href="http://reblog.zemanta.com/zemified/15428a2c-c1e3-43a5-8bee-4aec2175ed3d/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/reblog_e.png?x-id=15428a2c-c1e3-43a5-8bee-4aec2175ed3d" alt="Reblog this post [with Zemanta]" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.zoomasp.net/?feed=rss2&amp;p=32</wfw:commentRss>
		</item>
		<item>
		<title>testing twitter tools</title>
		<link>http://blog.zoomasp.net/?p=29</link>
		<comments>http://blog.zoomasp.net/?p=29#comments</comments>
		<pubDate>Wed, 26 Nov 2008 09:06:50 +0000</pubDate>
		<dc:creator>chintan prajapati</dc:creator>
		
		<category><![CDATA[Twitts]]></category>

		<guid isPermaLink="false">http://blog.zoomasp.net/?p=36</guid>
		<description><![CDATA[just installed twitter tools on wordpress
now onward all the new post will be tweeted automatically
check it out if you have blog http://alexking.org/projects/wordpress
thanks alex king
]]></description>
			<content:encoded><![CDATA[<p>just installed twitter tools on wordpress</p>
<p>now onward all the new post will be tweeted automatically</p>
<p>check it out if you have blog http://alexking.org/projects/wordpress</p>
<p>thanks alex king</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.zoomasp.net/?feed=rss2&amp;p=29</wfw:commentRss>
		</item>
		<item>
		<title>Share Point server (MOSS)  is fun</title>
		<link>http://blog.zoomasp.net/?p=28</link>
		<comments>http://blog.zoomasp.net/?p=28#comments</comments>
		<pubDate>Fri, 03 Oct 2008 07:19:43 +0000</pubDate>
		<dc:creator>chintan prajapati</dc:creator>
		
		<category><![CDATA[ASP.net]]></category>

		<guid isPermaLink="false">http://blog.zoomasp.net/?p=35</guid>
		<description><![CDATA[after watching this video it seems share point is really fun.

The SharePoint Song
For beginners nice presentation on share point webpart.. 
http://media.mindsharp.com/CBT/Lesson%2066%20Webparts/Overview%20of%20Windows%20SharePoint%20Services%20Web%20Parts/player.html
installation of MOSS 
Step by step guide to Sharepoint installation&#160; with screenshots http://grounding.co.za/blogs/brett/archive/2007/08/23/a-developer-s-101-to-installing-windows-sharepoint-services-3-0.aspx 
]]></description>
			<content:encoded><![CDATA[<p>after watching this video it seems share point is really fun.</p>
<div class="youtube-video"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/8P9QlojtrWs&#038;hl=en&amp;fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/8P9QlojtrWs&#038;hl=en&amp;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed></object></div>
<p>The SharePoint Song</p>
<p>For beginners nice presentation on share point webpart.. </p>
<p><a target="_blank" href="http://media.mindsharp.com/CBT/Lesson%2066%20Webparts/Overview%20of%20Windows%20SharePoint%20Services%20Web%20Parts/player.html">http://media.mindsharp.com/CBT/Lesson%2066%20Webparts/Overview%20of%20Windows%20SharePoint%20Services%20Web%20Parts/player.html</a></p>
<p>installation of MOSS 
<div class="youtube-video"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/5hsMr5aIo4w&#038;hl=en&amp;fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/5hsMr5aIo4w&#038;hl=en&amp;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed><br />Step by step guide to Sharepoint installation&nbsp; with screenshots <br /><a target="_blank" href="http://grounding.co.za/blogs/brett/archive/2007/08/23/a-developer-s-101-to-installing-windows-sharepoint-services-3-0.aspx">http://grounding.co.za/blogs/brett/archive/2007/08/23/a-developer-s-101-to-installing-windows-sharepoint-services-3-0.aspx</a><br /> </object></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.zoomasp.net/?feed=rss2&amp;p=28</wfw:commentRss>
		</item>
		<item>
		<title>Problem with Sql Parameter which uses IN Keyword with single quote in @parameter</title>
		<link>http://blog.zoomasp.net/?p=27</link>
		<comments>http://blog.zoomasp.net/?p=27#comments</comments>
		<pubDate>Mon, 08 Sep 2008 10:14:36 +0000</pubDate>
		<dc:creator>chintan prajapati</dc:creator>
		
		<category><![CDATA[ASP.net]]></category>

		<guid isPermaLink="false">http://blog.zoomasp.net/?p=34</guid>
		<description><![CDATA[it took plenty of time for me to search below article in google.. may be i didn&#8217;t get proper keywords to search solution.
http://bytes.com/forum/thread257290.html
here&#8217;s solution .. which u can find in above article 
DECLARE @codes NVARCHAR(100)SET @codes = &#8216;G01,G02&#8242;
SELECT * FROM tbRulesWHERE CHARINDEX(rule_code, @codes) &#62; 0
returns the same result set as
SELECT * FROM tbRulesWHERE rule_code IN [...]]]></description>
			<content:encoded><![CDATA[<p>it took plenty of time for me to search below article in google.. may be i didn&#8217;t get proper keywords to search solution.</p>
<p><a target="_blank" href="http://bytes.com/forum/thread257290.html">http://bytes.com/forum/thread257290.html</a></p>
<p>here&#8217;s solution .. which u can find in above article </p>
<p>DECLARE @codes NVARCHAR(100)<br />SET @codes = &#8216;G01,G02&#8242;</p>
<p><b>SELECT * FROM tbRules<br />WHERE CHARINDEX(rule_code, @codes) &gt; 0</b></p>
<p>returns the same result set as</p>
<p>SELECT * FROM tbRules<br />WHERE rule_code IN (&#8217;G01&#8242;, &#8216;G02&#8242;)</p>
<p>actually above trick is helpful when implementing <br /><a target="_blank" href="http://incubator.apache.org/lucene.net/">lucene search</a></p>
<p>tags: Sql Server, IN keyword Problem,single quote, &#8220;&#8216;&#8221;,Lucene.net</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.zoomasp.net/?feed=rss2&amp;p=27</wfw:commentRss>
		</item>
		<item>
		<title>enable disable validation group Client Side using Javascript in asp.net</title>
		<link>http://blog.zoomasp.net/?p=26</link>
		<comments>http://blog.zoomasp.net/?p=26#comments</comments>
		<pubDate>Mon, 10 Mar 2008 10:15:47 +0000</pubDate>
		<dc:creator>chintan prajapati</dc:creator>
		
		<category><![CDATA[ASP.net]]></category>

		<category><![CDATA[Javascript]]></category>

		<category><![CDATA[ValidationGroup]]></category>

		<guid isPermaLink="false">http://blog.zoomasp.net/?p=32</guid>
		<description><![CDATA[Recently i faced problem in validating Address Control which basically depends on selection of radio button.below is the figure of problem.

Here All controls below Gift to this Address  Radiobutton should not fire validation if it is not checked. Asp.net Simply does all validation and shows all errormessage even if Gift to this Address is [...]]]></description>
			<content:encoded><![CDATA[<p>Recently i faced problem in validating Address Control which basically depends on selection of radio button.below is the figure of problem.</p>
<p><img src="http://www.zoomasp.net/Common/images/ValidationGroupProblem.jpg" title="Validation Group Example" alt="Validation Group Example" border="0" /></p>
<p>Here All controls below <em><strong>Gift to this Address</strong>  </em>Radiobutton should not fire validation if it is not checked. Asp.net Simply does all validation and shows all errormessage even if <em>Gift to this Address </em>is not selected, so all you have to do is create validation group for left address block called &#8220;ADDRESS&#8221; by assigning ValidationGroup Property value of  &#8220;ADDRESS&#8221;.</p>
<p>Put this code for Button named &#8220;Done&#8221;</p>
<blockquote>
<blockquote><p>OnClientClick=&#8221;EnableDisableValidation();&#8221;</p></blockquote>
</blockquote>
<p>javascript function  EnableDisableValidation() looks like below.</p>
<blockquote>
<blockquote><p>function EnableDisableValidation()<br />
{<br />
if(<strong>$L</strong>(&#8217;rdbMyAddress&#8217;).checked)<br />
{<br />
return <strong>Page_ClientValidate(&#8217;Address&#8217;)</strong>;<br />
}<br />
else if($L(&#8217;rdbAddressGift&#8217;).checked)<br />
{<br />
if( <strong>Page_ClientValidate()</strong>)<br />
{ return true;}<br />
else<br />
{ return false;}<br />
}<br />
}</p></blockquote>
</blockquote>
<p>Where <strong>$L</strong> is replacement of document.getElementById(&#8221;);</p>
<p><strong> Page_ClientValidate(&#8217;Address&#8217;) </strong>function Validates  All Control having property   ValidationGroup =&#8221;Address&#8221;.</p>
<p>Where as  <strong>Page_ClientValidate()</strong> Blindly validates all validation Controls  within page.</p>
<p>I hope now you are clear with idea of customized validation control.</p>
<p>i can share more code with you if still not clear.</p>
<p>feel free to put your comments <img src='http://blog.zoomasp.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
happy codding <img src='http://blog.zoomasp.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.zoomasp.net/?feed=rss2&amp;p=26</wfw:commentRss>
		</item>
		<item>
		<title>Search engine with a touch of humor.</title>
		<link>http://blog.zoomasp.net/?p=25</link>
		<comments>http://blog.zoomasp.net/?p=25#comments</comments>
		<pubDate>Wed, 16 Jan 2008 11:24:50 +0000</pubDate>
		<dc:creator>chintan prajapati</dc:creator>
		
		<category><![CDATA[Google]]></category>

		<category><![CDATA[yahoo]]></category>

		<guid isPermaLink="false">http://blog.zoomasp.net/?p=29</guid>
		<description><![CDATA[Ms. Dewey is a
cool interactive search engine. What you see, in the totally flash
based website, is a smart lady Ms Dewey. She prompts you to enter few
keywords in the search box and if you linger she gets impatient and
teases you, with “hellooo, type something here..” kind of sentences.
She will speak on various keywords in her [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.msdewey.com/" target="_blank">Ms. Dewey</a> is a<br />
cool interactive search engine. What you see, in the totally flash<br />
based website, is a smart lady Ms Dewey. She prompts you to enter few<br />
keywords in the search box and if you linger she gets impatient and<br />
teases you, with “hellooo, type something here..” kind of sentences.</p>
<p>She will speak on various keywords in her own style. Use the best of<br />
button to see some of the best expressions which will make you smile<br />
atleast once. It is funniest search engine I ever saw. Unfortunately<br />
they haven’t mentioned the contact details of the lady <img src="http://www.nofullstop.com/wp/wp-includes/images/smilies/icon_wink.gif" alt=";)" class="wp-smiley" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.zoomasp.net/?feed=rss2&amp;p=25</wfw:commentRss>
		</item>
		<item>
		<title>Is SQL Mail and Database Mail supported in sql server 2005 express?</title>
		<link>http://blog.zoomasp.net/?p=24</link>
		<comments>http://blog.zoomasp.net/?p=24#comments</comments>
		<pubDate>Wed, 05 Dec 2007 10:08:04 +0000</pubDate>
		<dc:creator>chintan prajapati</dc:creator>
		
		<category><![CDATA[Sql Server 2005]]></category>

		<guid isPermaLink="false">http://blog.zoomasp.net/?p=27</guid>
		<description><![CDATA[Answer is No.
Few days before I was trying to send database mail via sql server 2005 Express with SP2.BUt it didn&#8217;t Work.
as Procedure [dbo].[sp_send_dbmail] requires a Parameter   @profile_name which is of datatype sysname .
@profile_name               sysname    = NULL,  
@profile_name can be found in table sysmail_profile( select * from sysmail_profile)
but Procedure is not accepting default [...]]]></description>
			<content:encoded><![CDATA[<p>Answer is No.</p>
<p>Few days before I was trying to send database mail via sql server 2005 Express with SP2.BUt it didn&#8217;t Work.<br />
as Procedure <strong><span style="color: #3366ff;">[dbo].[sp_send_dbmail]</span> </strong>requires a Parameter   @profile_name which is of datatype sysname .</p>
<p><small><span style="color: #3366ff;">@profile_name               sysname    = NULL, </span> </small></p>
<p>@profile_name can be found in table <strong>sysmail_profile(</strong> <em><strong><span style="color: #3366ff;"><small>select * from sysmail_profile</small></span>)</strong></em></p>
<p><em><strong></strong></em>but Procedure is not accepting default ProfileName &#8216;DBMailProfile&#8217; <em><strong><br />
</strong></em><br />
and After a little bit of google i found below article.</p>
<p>http://msdn2.microsoft.com/en-us/library/ms165636.aspx</p>
<p>which clearly says that</p>
<p><strong>SQL Server 2005 Features Not Supported in SQL Server Express</strong> <a name="sectionToggle1"></a></p>
<p>The following table lists the additional SQL Server 2005 database features that are not supported in this version of SQL Server Express. It also lists database features from previous versions of SQL Server that are not supported.</p>
<h3 class="subHeading"><!----></h3>
<table border="1" width="100%">
<tbody>
<tr>
<th> SQL Server 2005 features not supported in SQL Server Express</th>
<th> SQL Server features from previous versions not supported in SQL Server Express</th>
</tr>
<tr>
<td>Database mirroring</td>
<td>SQL Mail</td>
</tr>
<tr>
<td>Online restore</td>
<td>Fail-over clustering</td>
</tr>
<tr>
<td>Database snapshot</td>
<td>Distributed partitioned views</td>
</tr>
<tr>
<td>Parallel index operations</td>
<td>VIA protocol support</td>
</tr>
<tr>
<td>Mirrored media sets</td>
<td>Log shipping</td>
</tr>
<tr>
<td>Partitioning</td>
<td>Parallel DBCC</td>
</tr>
<tr>
<td>Address Windowing Extensions (AWE)</td>
<td>Parallel Create Index</td>
</tr>
<tr>
<td>Hot-add memory</td>
<td>Enhanced Read Ahead and Scan</td>
</tr>
<tr>
<td>Native HTTP SOAP access</td>
<td>Indexed views (materialized views)</td>
</tr>
<tr>
<td>SQL Mail and Database Mail</td>
<td>Partitioned views</td>
</tr>
<tr>
<td>Online Index Operations</td>
<td></td>
</tr>
<tr>
<td>SQL Server Agent and SQL Server Agent Service</td>
<td></td>
</tr>
</tbody>
</table>
<p>Thanks.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.zoomasp.net/?feed=rss2&amp;p=24</wfw:commentRss>
		</item>
	</channel>
</rss>
Failed creating file mapping
PHP Fatal error:  Failed creating file mapping in Unknown on line 0
PHP Fatal error:  XCache: Cannot create shm in Unknown on line 0
