<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-7635479603746627738</id><updated>2011-11-28T05:45:12.574+05:30</updated><category term='C#'/><category term='CLR'/><category term='Code Review'/><category term='CRM'/><category term='SQL Server'/><category term='VB.NET'/><category term='Virtualization'/><category term='Microsoft Dynamics CRM'/><category term='MSCRM'/><category term='MSCRM 4.0'/><category term='Java Script'/><category term='.NET'/><category term='ASP.NET'/><title type='text'>Tech Quest</title><subtitle type='html'>Question Tank contains technical questions on C#. .NET, ASP.NET, MSCRM, Microsoft Dynamics, SQL Server etc. These questions may also help during technical interviews.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://questionsbank.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://questionsbank.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Ashish Basran</name><uri>http://www.blogger.com/profile/15356650518872845935</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_m6IH3KVGcj8/SedhA8PBA1I/AAAAAAAAB-U/SRvb1PORKXA/S220/DSC04941.JPG'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>31</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-7635479603746627738.post-5845439360648464888</id><published>2010-02-05T11:36:00.000+05:30</published><updated>2010-02-05T11:38:36.525+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='Virtualization'/><title type='text'>What is SCVMM?</title><summary type='text'>SCVMM stands for System Center Virtual Machine Manager. This tool is used to manage and administer multi vendor Virtual Machines. This tool can help converting Physical Servers to Virtual Machines, migrate virtual machines and managing resources for virtual machines and Hyper-V hosts.  </summary><link rel='replies' type='application/atom+xml' href='http://questionsbank.blogspot.com/feeds/5845439360648464888/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7635479603746627738&amp;postID=5845439360648464888&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/5845439360648464888'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/5845439360648464888'/><link rel='alternate' type='text/html' href='http://questionsbank.blogspot.com/2010/02/what-is-scvmm.html' title='What is SCVMM?'/><author><name>Ashish Basran</name><uri>http://www.blogger.com/profile/15356650518872845935</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_m6IH3KVGcj8/SedhA8PBA1I/AAAAAAAAB-U/SRvb1PORKXA/S220/DSC04941.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7635479603746627738.post-1154738240458654140</id><published>2009-06-08T17:12:00.005+05:30</published><updated>2009-06-08T17:28:10.360+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='C#'/><title type='text'>What is Boxing &amp; Unboxing</title><summary type='text'>Converting a value type to reference type is called Boxing       int i =5;      string mystring = i.ToString();   //This is boxing as string is reference typeConverting a reference type to value type is called Unboxing      int x= Convert.ToInt32(mystring);  //This is unboxing       Boxing &amp; Unboxing is a link between value type &amp; reference type.For more information Refer:http://</summary><link rel='replies' type='application/atom+xml' href='http://questionsbank.blogspot.com/feeds/1154738240458654140/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7635479603746627738&amp;postID=1154738240458654140&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/1154738240458654140'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/1154738240458654140'/><link rel='alternate' type='text/html' href='http://questionsbank.blogspot.com/2009/06/what-is-boxing-unboxing.html' title='What is Boxing &amp; Unboxing'/><author><name>Saba Khan</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7635479603746627738.post-4927171422091317590</id><published>2009-06-08T15:13:00.005+05:30</published><updated>2009-06-08T16:42:58.774+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='ASP.NET'/><title type='text'>What is ViewState in ASP.NET?</title><summary type='text'>ViewState is used to maintain state of the page across the postback. Values are saved in encrypted form in hidden controls.By default ViewState is enabled on ASP.NET Web Forms. If you dont want to maintain the ViewState, include the directive &lt;%@ Page EnableViewState="false" %&gt; at the top of an .aspx page.Also you can switch viewstate on or off for any web control by setting EnableViewState </summary><link rel='replies' type='application/atom+xml' href='http://questionsbank.blogspot.com/feeds/4927171422091317590/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7635479603746627738&amp;postID=4927171422091317590&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/4927171422091317590'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/4927171422091317590'/><link rel='alternate' type='text/html' href='http://questionsbank.blogspot.com/2009/06/what-is-viewstate-in-aspnet.html' title='What is ViewState in ASP.NET?'/><author><name>Saba Khan</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7635479603746627738.post-621566677109643674</id><published>2009-06-02T15:30:00.005+05:30</published><updated>2009-06-02T16:22:24.276+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='.NET'/><title type='text'>Can we pass null as a parameter value in SQL Stored Procedure with .Net?</title><summary type='text'>Simply passing null as a parameter value to Stored Procedure will be considered as parameter not passed &amp; will throw exception as parameter not found.For passing null value as a parameter of Stored Procedure System.DBNull.Value should be used.For more information refer:http://msdn.microsoft.com/en-us/library/system.dbnull(vs.71).aspx</summary><link rel='replies' type='application/atom+xml' href='http://questionsbank.blogspot.com/feeds/621566677109643674/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7635479603746627738&amp;postID=621566677109643674&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/621566677109643674'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/621566677109643674'/><link rel='alternate' type='text/html' href='http://questionsbank.blogspot.com/2009/06/can-we-pass-null-as-parameter-value-in.html' title='Can we pass null as a parameter value in SQL Stored Procedure with .Net?'/><author><name>Saba Khan</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7635479603746627738.post-1355306561026873941</id><published>2009-05-28T16:52:00.003+05:30</published><updated>2009-05-28T17:24:47.308+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='.NET'/><title type='text'>For Typecasting integer,How do we choose between (int), Int32.Parse and Convert.ToInt32</title><summary type='text'>(int)  can only typecast types which can be represented as integer like double, long, float, etcInt32.Parse and Convert.ToInt32 both are similar only difference between them is if null is passed as parameter, Int32.Parse()  will throw ArgumentNullException where as Convert.ToInt32 will return zero '0'In .Net 2.0 method Int32.TryParse can be used for validating input for conversion. it returns </summary><link rel='replies' type='application/atom+xml' href='http://questionsbank.blogspot.com/feeds/1355306561026873941/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7635479603746627738&amp;postID=1355306561026873941&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/1355306561026873941'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/1355306561026873941'/><link rel='alternate' type='text/html' href='http://questionsbank.blogspot.com/2009/05/for-typecasting-integerhow-do-we-choose.html' title='For Typecasting integer,How do we choose between (int), Int32.Parse and Convert.ToInt32'/><author><name>Saba Khan</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7635479603746627738.post-2739780674028805675</id><published>2009-05-28T16:47:00.005+05:30</published><updated>2009-05-28T16:51:44.884+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='C#'/><title type='text'>Is Multiple inheritance possible in C#?</title><summary type='text'>No. But by using Interface we can implement Multiple Inheritance in C#</summary><link rel='replies' type='application/atom+xml' href='http://questionsbank.blogspot.com/feeds/2739780674028805675/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7635479603746627738&amp;postID=2739780674028805675&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/2739780674028805675'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/2739780674028805675'/><link rel='alternate' type='text/html' href='http://questionsbank.blogspot.com/2009/05/is-multiple-inheritance-possible-in-c.html' title='Is Multiple inheritance possible in C#?'/><author><name>Saba Khan</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7635479603746627738.post-6276975182231979564</id><published>2009-05-28T12:34:00.004+05:30</published><updated>2009-05-28T15:24:10.544+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='C#'/><title type='text'>Difference between Debug.Write and Trace.Write</title><summary type='text'>Both Debug.Write and Trace.Write writes information to the trace listeners.1. Debug.Write gets compiled only when application is build under debug mode.    Trace.Write gets complied in both Debug and Release Mode.2.  Debug.Write is used while debugging the application .     Trace.Write is used to help identifying the problems in  the Released version of Application.Namespace for Debug.Write and </summary><link rel='replies' type='application/atom+xml' href='http://questionsbank.blogspot.com/feeds/6276975182231979564/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7635479603746627738&amp;postID=6276975182231979564&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/6276975182231979564'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/6276975182231979564'/><link rel='alternate' type='text/html' href='http://questionsbank.blogspot.com/2009/05/difference-between-debugwrite-and.html' title='Difference between Debug.Write and Trace.Write'/><author><name>Saba Khan</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7635479603746627738.post-2649102378547234622</id><published>2009-04-21T23:14:00.002+05:30</published><updated>2009-04-21T23:18:07.674+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='ASP.NET'/><title type='text'>What is the use of SmartNavigation attribute in page directive?</title><summary type='text'>&lt;!--[if gte mso 9]&gt;     Normal   0               false   false   false      EN-US   X-NONE   X-NONE                                                     MicrosoftInternetExplorer4                                                   &lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;</summary><link rel='replies' type='application/atom+xml' href='http://questionsbank.blogspot.com/feeds/2649102378547234622/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7635479603746627738&amp;postID=2649102378547234622&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/2649102378547234622'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/2649102378547234622'/><link rel='alternate' type='text/html' href='http://questionsbank.blogspot.com/2009/04/what-is-use-of-smartnavigation.html' title='What is the use of SmartNavigation attribute in page directive?'/><author><name>Ashish Basran</name><uri>http://www.blogger.com/profile/15356650518872845935</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_m6IH3KVGcj8/SedhA8PBA1I/AAAAAAAAB-U/SRvb1PORKXA/S220/DSC04941.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7635479603746627738.post-6953061720619651728</id><published>2009-04-21T23:07:00.000+05:30</published><updated>2009-04-21T23:14:45.567+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='ASP.NET'/><title type='text'>What is the use of @Register page directive?</title><summary type='text'>&lt;!--[if gte mso 9]&gt;     Normal   0               false   false   false      EN-US   X-NONE   X-NONE                                                     MicrosoftInternetExplorer4                                                   &lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;</summary><link rel='replies' type='application/atom+xml' href='http://questionsbank.blogspot.com/feeds/6953061720619651728/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7635479603746627738&amp;postID=6953061720619651728&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/6953061720619651728'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/6953061720619651728'/><link rel='alternate' type='text/html' href='http://questionsbank.blogspot.com/2009/04/what-is-use-of-register-page-directive.html' title='What is the use of @Register page directive?'/><author><name>Ashish Basran</name><uri>http://www.blogger.com/profile/15356650518872845935</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_m6IH3KVGcj8/SedhA8PBA1I/AAAAAAAAB-U/SRvb1PORKXA/S220/DSC04941.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7635479603746627738.post-2348537104927656549</id><published>2009-04-21T22:53:00.000+05:30</published><updated>2009-04-21T22:54:57.711+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='.NET'/><category scheme='http://www.blogger.com/atom/ns#' term='ASP.NET'/><title type='text'>What is the way to identify if page is Post back?</title><summary type='text'>&lt;!--[if gte mso 9]&gt;     Normal   0               false   false   false      EN-US   X-NONE   X-NONE                                                     MicrosoftInternetExplorer4                                                   &lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;</summary><link rel='replies' type='application/atom+xml' href='http://questionsbank.blogspot.com/feeds/2348537104927656549/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7635479603746627738&amp;postID=2348537104927656549&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/2348537104927656549'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/2348537104927656549'/><link rel='alternate' type='text/html' href='http://questionsbank.blogspot.com/2009/04/what-is-way-to-identify-if-page-is-post.html' title='What is the way to identify if page is Post back?'/><author><name>Ashish Basran</name><uri>http://www.blogger.com/profile/15356650518872845935</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_m6IH3KVGcj8/SedhA8PBA1I/AAAAAAAAB-U/SRvb1PORKXA/S220/DSC04941.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7635479603746627738.post-3488942255491474816</id><published>2009-04-21T20:51:00.000+05:30</published><updated>2009-04-21T20:53:43.532+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='.NET'/><category scheme='http://www.blogger.com/atom/ns#' term='C#'/><title type='text'>What is the difference between “string” and “StringBuilder”?</title><summary type='text'>&lt;!--[if gte mso 9]&gt;     Normal   0               false   false   false      EN-US   X-NONE   X-NONE                                                     MicrosoftInternetExplorer4                                                   &lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;</summary><link rel='replies' type='application/atom+xml' href='http://questionsbank.blogspot.com/feeds/3488942255491474816/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7635479603746627738&amp;postID=3488942255491474816&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/3488942255491474816'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/3488942255491474816'/><link rel='alternate' type='text/html' href='http://questionsbank.blogspot.com/2009/04/what-is-difference-between-string-and.html' title='What is the difference between “string” and “StringBuilder”?'/><author><name>Ashish Basran</name><uri>http://www.blogger.com/profile/15356650518872845935</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_m6IH3KVGcj8/SedhA8PBA1I/AAAAAAAAB-U/SRvb1PORKXA/S220/DSC04941.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7635479603746627738.post-1649511347835175901</id><published>2009-04-21T20:41:00.000+05:30</published><updated>2009-04-21T20:51:16.298+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='.NET'/><category scheme='http://www.blogger.com/atom/ns#' term='C#'/><title type='text'>What are virtual keyword/virtual method in C#?</title><summary type='text'>&lt;!--[if gte mso 9]&gt;     Normal   0               false   false   false      EN-US   X-NONE   X-NONE                                                     MicrosoftInternetExplorer4                                                   &lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;</summary><link rel='replies' type='application/atom+xml' href='http://questionsbank.blogspot.com/feeds/1649511347835175901/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7635479603746627738&amp;postID=1649511347835175901&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/1649511347835175901'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/1649511347835175901'/><link rel='alternate' type='text/html' href='http://questionsbank.blogspot.com/2009/04/what-are-virtual-keywordvirtual-method.html' title='What are virtual keyword/virtual method in C#?'/><author><name>Ashish Basran</name><uri>http://www.blogger.com/profile/15356650518872845935</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_m6IH3KVGcj8/SedhA8PBA1I/AAAAAAAAB-U/SRvb1PORKXA/S220/DSC04941.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7635479603746627738.post-6925602714059198089</id><published>2009-04-18T14:37:00.000+05:30</published><updated>2009-04-18T14:38:45.092+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='.NET'/><category scheme='http://www.blogger.com/atom/ns#' term='C#'/><title type='text'>What is satellite assembly?</title><summary type='text'>&lt;!--[if gte mso 9]&gt;     Normal   0               false   false   false      EN-US   X-NONE   X-NONE                                                     MicrosoftInternetExplorer4                                                   &lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;</summary><link rel='replies' type='application/atom+xml' href='http://questionsbank.blogspot.com/feeds/6925602714059198089/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7635479603746627738&amp;postID=6925602714059198089&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/6925602714059198089'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/6925602714059198089'/><link rel='alternate' type='text/html' href='http://questionsbank.blogspot.com/2009/04/what-is-satellite-assembly.html' title='What is satellite assembly?'/><author><name>Ashish Basran</name><uri>http://www.blogger.com/profile/15356650518872845935</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_m6IH3KVGcj8/SedhA8PBA1I/AAAAAAAAB-U/SRvb1PORKXA/S220/DSC04941.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7635479603746627738.post-1122080989929303035</id><published>2009-04-18T14:24:00.001+05:30</published><updated>2009-04-18T14:37:29.347+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='ASP.NET'/><title type='text'>What are the ASP.NET page life cycle methods?</title><summary type='text'>&lt;!--[if gte mso 9]&gt;     Normal   0               false   false   false      EN-US   X-NONE   X-NONE                                                     MicrosoftInternetExplorer4                                                   &lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;</summary><link rel='replies' type='application/atom+xml' href='http://questionsbank.blogspot.com/feeds/1122080989929303035/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7635479603746627738&amp;postID=1122080989929303035&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/1122080989929303035'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/1122080989929303035'/><link rel='alternate' type='text/html' href='http://questionsbank.blogspot.com/2009/04/what-are-aspnet-page-life-cycle-methods.html' title='What are the ASP.NET page life cycle methods?'/><author><name>Ashish Basran</name><uri>http://www.blogger.com/profile/15356650518872845935</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_m6IH3KVGcj8/SedhA8PBA1I/AAAAAAAAB-U/SRvb1PORKXA/S220/DSC04941.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7635479603746627738.post-5020709153276402411</id><published>2009-04-18T14:14:00.000+05:30</published><updated>2009-04-18T14:21:29.703+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='.NET'/><category scheme='http://www.blogger.com/atom/ns#' term='C#'/><title type='text'>Is it possible to execute multiple catch blocks?</title><summary type='text'>No, it is not possible to execute multiple catch blocks. After execution of appropriate catch block the control gets transferred to finally block. Note: You should put catch blocks in proper order.</summary><link rel='replies' type='application/atom+xml' href='http://questionsbank.blogspot.com/feeds/5020709153276402411/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7635479603746627738&amp;postID=5020709153276402411&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/5020709153276402411'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/5020709153276402411'/><link rel='alternate' type='text/html' href='http://questionsbank.blogspot.com/2009/04/is-it-possible-to-execute-multiple.html' title='Is it possible to execute multiple catch blocks?'/><author><name>Ashish Basran</name><uri>http://www.blogger.com/profile/15356650518872845935</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_m6IH3KVGcj8/SedhA8PBA1I/AAAAAAAAB-U/SRvb1PORKXA/S220/DSC04941.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7635479603746627738.post-3928133534128655080</id><published>2009-04-16T22:30:00.001+05:30</published><updated>2009-04-16T22:42:38.638+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='.NET'/><title type='text'>List versions of .NET framework</title><summary type='text'>&lt;!--[if gte mso 9]&gt;     Normal   0               false   false   false      EN-US   X-NONE   X-NONE                                                     MicrosoftInternetExplorer4                                                   &lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;</summary><link rel='replies' type='application/atom+xml' href='http://questionsbank.blogspot.com/feeds/3928133534128655080/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7635479603746627738&amp;postID=3928133534128655080&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/3928133534128655080'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/3928133534128655080'/><link rel='alternate' type='text/html' href='http://questionsbank.blogspot.com/2009/04/list-versions-of-net-framework.html' title='List versions of .NET framework'/><author><name>Ashish Basran</name><uri>http://www.blogger.com/profile/15356650518872845935</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_m6IH3KVGcj8/SedhA8PBA1I/AAAAAAAAB-U/SRvb1PORKXA/S220/DSC04941.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7635479603746627738.post-5055928906328523534</id><published>2009-04-16T22:29:00.002+05:30</published><updated>2009-04-16T22:44:04.362+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='SQL Server'/><title type='text'>What versions of Microsoft SQL Server 2005 are available?</title><summary type='text'>There are four versions of Microsoft SQL server 2005. Following is the list1. Express2. Workgroup3. Standard4. EnterpriseClick for details</summary><link rel='replies' type='application/atom+xml' href='http://questionsbank.blogspot.com/feeds/5055928906328523534/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7635479603746627738&amp;postID=5055928906328523534&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/5055928906328523534'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/5055928906328523534'/><link rel='alternate' type='text/html' href='http://questionsbank.blogspot.com/2009/04/what-versions-of-microsoft-sql-server.html' title='What versions of Microsoft SQL Server 2005 are available?'/><author><name>Ashish Basran</name><uri>http://www.blogger.com/profile/15356650518872845935</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_m6IH3KVGcj8/SedhA8PBA1I/AAAAAAAAB-U/SRvb1PORKXA/S220/DSC04941.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7635479603746627738.post-6206266746638732641</id><published>2009-04-16T22:18:00.001+05:30</published><updated>2009-04-16T22:28:49.315+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='MSCRM 4.0'/><category scheme='http://www.blogger.com/atom/ns#' term='MSCRM'/><category scheme='http://www.blogger.com/atom/ns#' term='Microsoft Dynamics CRM'/><title type='text'>What options are available for configuring Incoming Email message of MSCRM 4.0?</title><summary type='text'>&lt;!--[if gte mso 9]&gt;     Normal   0               false   false   false      EN-US   X-NONE   X-NONE                                                     MicrosoftInternetExplorer4                                                   &lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;</summary><link rel='replies' type='application/atom+xml' href='http://questionsbank.blogspot.com/feeds/6206266746638732641/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7635479603746627738&amp;postID=6206266746638732641&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/6206266746638732641'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/6206266746638732641'/><link rel='alternate' type='text/html' href='http://questionsbank.blogspot.com/2009/04/what-options-are-available-for.html' title='What options are available for configuring Incoming Email message of MSCRM 4.0?'/><author><name>Ashish Basran</name><uri>http://www.blogger.com/profile/15356650518872845935</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_m6IH3KVGcj8/SedhA8PBA1I/AAAAAAAAB-U/SRvb1PORKXA/S220/DSC04941.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7635479603746627738.post-90269118846710560</id><published>2009-03-28T15:01:00.002+05:30</published><updated>2009-03-28T15:04:52.938+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='.NET'/><category scheme='http://www.blogger.com/atom/ns#' term='C#'/><title type='text'>What is an abstract class?</title><summary type='text'>Abstract class is a class that cannot be instantiated. This class must be inherited and abstract method of this must be overriden.</summary><link rel='replies' type='application/atom+xml' href='http://questionsbank.blogspot.com/feeds/90269118846710560/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7635479603746627738&amp;postID=90269118846710560&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/90269118846710560'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/90269118846710560'/><link rel='alternate' type='text/html' href='http://questionsbank.blogspot.com/2009/03/what-is-abstract-class.html' title='What is an abstract class?'/><author><name>Ashish Basran</name><uri>http://www.blogger.com/profile/15356650518872845935</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_m6IH3KVGcj8/SedhA8PBA1I/AAAAAAAAB-U/SRvb1PORKXA/S220/DSC04941.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7635479603746627738.post-9143342111995060919</id><published>2009-03-28T14:46:00.000+05:30</published><updated>2009-03-28T14:50:01.362+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='VB.NET'/><category scheme='http://www.blogger.com/atom/ns#' term='.NET'/><category scheme='http://www.blogger.com/atom/ns#' term='C#'/><category scheme='http://www.blogger.com/atom/ns#' term='CLR'/><title type='text'>What are different data types in .NET?</title><summary type='text'>There are two data types supported by .NET framework:1. Value Type2. Reference TypeValue Type:These directly hold the data at respective memory location.Reference Type:These does not hold the actual data. These holds the reference/pointer to the actual data i.e. holding memory address of actual data.</summary><link rel='replies' type='application/atom+xml' href='http://questionsbank.blogspot.com/feeds/9143342111995060919/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7635479603746627738&amp;postID=9143342111995060919&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/9143342111995060919'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/9143342111995060919'/><link rel='alternate' type='text/html' href='http://questionsbank.blogspot.com/2009/03/what-are-different-data-types-in-net.html' title='What are different data types in .NET?'/><author><name>Ashish Basran</name><uri>http://www.blogger.com/profile/15356650518872845935</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_m6IH3KVGcj8/SedhA8PBA1I/AAAAAAAAB-U/SRvb1PORKXA/S220/DSC04941.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7635479603746627738.post-6000157305770971714</id><published>2009-03-28T14:42:00.000+05:30</published><updated>2009-03-28T14:45:43.819+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='.NET'/><category scheme='http://www.blogger.com/atom/ns#' term='C#'/><title type='text'>Difference between abstract class and interface</title><summary type='text'>In abstract class some methods can have implementation but in interface all the methods have to be abstract. Abstract class can have access modifiers but interface method declaration cannot have access modifiers.</summary><link rel='replies' type='application/atom+xml' href='http://questionsbank.blogspot.com/feeds/6000157305770971714/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7635479603746627738&amp;postID=6000157305770971714&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/6000157305770971714'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/6000157305770971714'/><link rel='alternate' type='text/html' href='http://questionsbank.blogspot.com/2009/03/difference-between-abstract-class-and.html' title='Difference between abstract class and interface'/><author><name>Ashish Basran</name><uri>http://www.blogger.com/profile/15356650518872845935</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_m6IH3KVGcj8/SedhA8PBA1I/AAAAAAAAB-U/SRvb1PORKXA/S220/DSC04941.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7635479603746627738.post-7786396210512887044</id><published>2009-03-24T12:02:00.001+05:30</published><updated>2009-03-28T12:43:00.915+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='.NET'/><category scheme='http://www.blogger.com/atom/ns#' term='Code Review'/><category scheme='http://www.blogger.com/atom/ns#' term='C#'/><title type='text'>What is StyleCop?</title><summary type='text'>StyleCop (formally known as Source Analysis) is a code analysis tool from Microsoft. It checks C# code for conformance to StyleCop's recommended coding styles and Microsoft's .NET Framework Design Guidelines. StyleCop analyzes the source code, allowing it to enforce a different set of rules from FxCop (Code Analysis). The rules are classified into categories including following:· Documentation· </summary><link rel='replies' type='application/atom+xml' href='http://questionsbank.blogspot.com/feeds/7786396210512887044/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7635479603746627738&amp;postID=7786396210512887044&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/7786396210512887044'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/7786396210512887044'/><link rel='alternate' type='text/html' href='http://questionsbank.blogspot.com/2009/03/what-is-stylecop.html' title='What is StyleCop?'/><author><name>Ashish Basran</name><uri>http://www.blogger.com/profile/15356650518872845935</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_m6IH3KVGcj8/SedhA8PBA1I/AAAAAAAAB-U/SRvb1PORKXA/S220/DSC04941.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7635479603746627738.post-7250024547943029682</id><published>2009-02-28T00:31:00.000+05:30</published><updated>2009-02-28T00:35:02.787+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='Java Script'/><title type='text'>What is JQuery?</title><summary type='text'>JQuery is an open-source JavaScript library that greatly simplifies the task of HTML development. Microsoft demonstrated JQuery's integration with IntelliSense in the planned Visual Studio 2010. Microsoft expects that it will reduce the workload for Developers building web pages using its ASP.NET, AJAX.Click for more information on JQuery.</summary><link rel='replies' type='application/atom+xml' href='http://questionsbank.blogspot.com/feeds/7250024547943029682/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7635479603746627738&amp;postID=7250024547943029682&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/7250024547943029682'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/7250024547943029682'/><link rel='alternate' type='text/html' href='http://questionsbank.blogspot.com/2009/02/what-is-jquery.html' title='What is JQuery?'/><author><name>Ashish Basran</name><uri>http://www.blogger.com/profile/15356650518872845935</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_m6IH3KVGcj8/SedhA8PBA1I/AAAAAAAAB-U/SRvb1PORKXA/S220/DSC04941.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7635479603746627738.post-3039634433313978811</id><published>2009-02-26T22:00:00.000+05:30</published><updated>2009-02-26T22:15:48.327+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='SQL Server'/><title type='text'>What types of indexes are available in Microsoft SQL Server?</title><summary type='text'>Microsoft SQL Server two types of indexes as follows:1. Clustered Index: This defines physical sorting of the database table rows in the storage.2. Non-clustered Index: This defines outside the database table. This contains sorted list of database references/pointers. Note: There are limitations on number of indexes one can define on database table.</summary><link rel='replies' type='application/atom+xml' href='http://questionsbank.blogspot.com/feeds/3039634433313978811/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7635479603746627738&amp;postID=3039634433313978811&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/3039634433313978811'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/3039634433313978811'/><link rel='alternate' type='text/html' href='http://questionsbank.blogspot.com/2009/02/what-types-of-indexes-are-available-in.html' title='What types of indexes are available in Microsoft SQL Server?'/><author><name>Ashish Basran</name><uri>http://www.blogger.com/profile/15356650518872845935</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_m6IH3KVGcj8/SedhA8PBA1I/AAAAAAAAB-U/SRvb1PORKXA/S220/DSC04941.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7635479603746627738.post-3289759487735682512</id><published>2009-02-25T22:15:00.000+05:30</published><updated>2009-02-25T22:28:49.514+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='CRM'/><title type='text'>What server editions available for Microsoft Dynamics CRM 4.0?</title><summary type='text'>Following are the available editions of Microsoft Dynamics CRM 4.01. Microsoft Dynamics CRM 4.0 Workgroup Server2. Microsoft Dynamics CRM 4.0 Professional Server3. Microsoft Dynamics CRM 4.0 Enterprise ServerClick for details.</summary><link rel='replies' type='application/atom+xml' href='http://questionsbank.blogspot.com/feeds/3289759487735682512/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7635479603746627738&amp;postID=3289759487735682512&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/3289759487735682512'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/3289759487735682512'/><link rel='alternate' type='text/html' href='http://questionsbank.blogspot.com/2009/02/what-server-editions-available-for.html' title='What server editions available for Microsoft Dynamics CRM 4.0?'/><author><name>Ashish Basran</name><uri>http://www.blogger.com/profile/15356650518872845935</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_m6IH3KVGcj8/SedhA8PBA1I/AAAAAAAAB-U/SRvb1PORKXA/S220/DSC04941.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7635479603746627738.post-8873839209804968771</id><published>2009-02-25T22:05:00.000+05:30</published><updated>2009-02-25T22:13:29.720+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='CRM'/><title type='text'>If you have CRM callout and plug-in defined on same entity, what will execute first?</title><summary type='text'>The event execution pipeline first executes plug-ins that are registered in a given pipeline stage then it executes Microsoft Dynamics CRM 3.0 callout which are registered in the same stage.</summary><link rel='replies' type='application/atom+xml' href='http://questionsbank.blogspot.com/feeds/8873839209804968771/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7635479603746627738&amp;postID=8873839209804968771&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/8873839209804968771'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/8873839209804968771'/><link rel='alternate' type='text/html' href='http://questionsbank.blogspot.com/2009/02/if-you-have-crm-callout-and-plug-in.html' title='If you have CRM callout and plug-in defined on same entity, what will execute first?'/><author><name>Ashish Basran</name><uri>http://www.blogger.com/profile/15356650518872845935</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_m6IH3KVGcj8/SedhA8PBA1I/AAAAAAAAB-U/SRvb1PORKXA/S220/DSC04941.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7635479603746627738.post-1986064220773376831</id><published>2008-06-08T21:33:00.000+05:30</published><updated>2008-06-09T19:58:38.512+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='ASP.NET'/><title type='text'>What is the difference between Server.Transfer and Response.Redirect method?</title><summary type='text'>Server.Transfer transfers execution from the first page to the second page on server side. Browser/Client made only one request and getting response. The benefit is, there is only one server side trip. The posted form variables and query string values also available on second page.Response.Redirect tells the browser that the requested page can be found at a new specified location. Then browser </summary><link rel='replies' type='application/atom+xml' href='http://questionsbank.blogspot.com/feeds/1986064220773376831/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7635479603746627738&amp;postID=1986064220773376831&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/1986064220773376831'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/1986064220773376831'/><link rel='alternate' type='text/html' href='http://questionsbank.blogspot.com/2008/06/what-is-difference-between.html' title='What is the difference between Server.Transfer and Response.Redirect method?'/><author><name>Ashish Basran</name><uri>http://www.blogger.com/profile/15356650518872845935</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_m6IH3KVGcj8/SedhA8PBA1I/AAAAAAAAB-U/SRvb1PORKXA/S220/DSC04941.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7635479603746627738.post-1930305977335470837</id><published>2008-06-08T21:27:00.001+05:30</published><updated>2008-06-08T21:28:44.109+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='ASP.NET'/><title type='text'>What ASP.NET validation controls are available?</title><summary type='text'>Folloing are the ASP.NET validation controls available in ASP.NET&gt; RequiredFieldValidator &gt; RangeValidator &gt; CompareValidator &gt; RegularExpressionValidator &gt; CustomValidator &gt; ValidationSummary</summary><link rel='replies' type='application/atom+xml' href='http://questionsbank.blogspot.com/feeds/1930305977335470837/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7635479603746627738&amp;postID=1930305977335470837&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/1930305977335470837'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/1930305977335470837'/><link rel='alternate' type='text/html' href='http://questionsbank.blogspot.com/2008/06/what-aspnet-validation-controls-are.html' title='What ASP.NET validation controls are available?'/><author><name>Ashish Basran</name><uri>http://www.blogger.com/profile/15356650518872845935</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_m6IH3KVGcj8/SedhA8PBA1I/AAAAAAAAB-U/SRvb1PORKXA/S220/DSC04941.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7635479603746627738.post-7518331901895612412</id><published>2008-06-08T21:24:00.000+05:30</published><updated>2008-06-08T21:26:48.149+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='ASP.NET'/><title type='text'>What directives are there in ASP.NET?</title><summary type='text'>Following are the types of directives in ASP.NET@ Page directive @ Import directive @ Implements directive @ Register directive @ Assembly directive @ OutputCache directive @ Reference directive</summary><link rel='replies' type='application/atom+xml' href='http://questionsbank.blogspot.com/feeds/7518331901895612412/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7635479603746627738&amp;postID=7518331901895612412&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/7518331901895612412'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/7518331901895612412'/><link rel='alternate' type='text/html' href='http://questionsbank.blogspot.com/2008/06/what-directives-are-there-in-aspnet.html' title='What directives are there in ASP.NET?'/><author><name>Ashish Basran</name><uri>http://www.blogger.com/profile/15356650518872845935</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_m6IH3KVGcj8/SedhA8PBA1I/AAAAAAAAB-U/SRvb1PORKXA/S220/DSC04941.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7635479603746627738.post-4052860587519417417</id><published>2008-03-11T23:26:00.000+05:30</published><updated>2008-03-11T23:28:08.128+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='ASP.NET'/><title type='text'>inetinfo.exe, aspnet_isapi.dll and aspnet_wp.exe in ASP.NET application</title><summary type='text'>What is the role of inetinfo.exe, aspnet_isapi.dll, aspnet_wp.exe in ASP.NET application?Inetinfo.exe is the executable of Microsoft IIS server. It receives requests and processes/forward them. If the request is received with .aspx extension, ISAPI filter aspnet_isapi.dll takes care of it. This forwards the request to worker process aspnet_wp.exe. This process will actually execute the request </summary><link rel='replies' type='application/atom+xml' href='http://questionsbank.blogspot.com/feeds/4052860587519417417/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7635479603746627738&amp;postID=4052860587519417417&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/4052860587519417417'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/4052860587519417417'/><link rel='alternate' type='text/html' href='http://questionsbank.blogspot.com/2008/03/inetinfoexe-aspnetisapidll-and.html' title='inetinfo.exe, aspnet_isapi.dll and aspnet_wp.exe in ASP.NET application'/><author><name>Ashish Basran</name><uri>http://www.blogger.com/profile/15356650518872845935</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_m6IH3KVGcj8/SedhA8PBA1I/AAAAAAAAB-U/SRvb1PORKXA/S220/DSC04941.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7635479603746627738.post-8009843895318130606</id><published>2008-03-09T00:30:00.000+05:30</published><updated>2008-03-09T01:15:07.612+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='ASP.NET'/><title type='text'>Authentication in ASP.NET</title><summary type='text'>What are the Authentication types in ASP.NET?1. Wiindows Authentication (Default)2. Passport3. Forms4. None These can be set through web.config file. Following is an example:</summary><link rel='replies' type='application/atom+xml' href='http://questionsbank.blogspot.com/feeds/8009843895318130606/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7635479603746627738&amp;postID=8009843895318130606&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/8009843895318130606'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7635479603746627738/posts/default/8009843895318130606'/><link rel='alternate' type='text/html' href='http://questionsbank.blogspot.com/2008/03/authentication-in-aspnet.html' title='Authentication in ASP.NET'/><author><name>Ashish Basran</name><uri>http://www.blogger.com/profile/15356650518872845935</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_m6IH3KVGcj8/SedhA8PBA1I/AAAAAAAAB-U/SRvb1PORKXA/S220/DSC04941.JPG'/></author><thr:total>0</thr:total></entry></feed>
