<?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-8802277204728158618</id><updated>2011-11-27T15:28:59.909-08:00</updated><title type='text'>ASP.NET Interview Questions and Answers</title><subtitle type='html'>ASP.NET Interview Question and Answers, Master Pages, Form Controls, Custom Controls, Maintaining Site, Error Handling, Security, Profiles and Themes, Web Parts, Configuring, Tracing and Debugging, Web Services.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://aspdotnet-interview.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8802277204728158618/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://aspdotnet-interview.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>satish</name><uri>http://www.blogger.com/profile/11104095808954112849</uri><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><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>25</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-8802277204728158618.post-5640536637438824845</id><published>2008-09-17T00:00:00.000-07:00</published><updated>2008-09-17T00:07:46.936-07:00</updated><title type='text'>How Many types of Page Load functions in asp.net?</title><content type='html'>Page_AbortTransaction&lt;br /&gt;Page_CommitTransaction&lt;br /&gt;Page_DataBinding&lt;br /&gt;Page_Disposed&lt;br /&gt;Page_Error&lt;br /&gt;Page_Init&lt;br /&gt;Page_InitComplete&lt;br /&gt;Page_Load&lt;br /&gt;Page_LoadComplete&lt;br /&gt;Page_PreInit&lt;br /&gt;Page_PreLoad&lt;br /&gt;Page_PreRender&lt;br /&gt;Page_PreRenderComplete&lt;br /&gt;Page_SaveStateComplete&lt;br /&gt;Page_Unload&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;this is the main page load functions&lt;br /&gt;&lt;br /&gt;Page_init&lt;br /&gt;Page_Load&lt;br /&gt;Page_Prerender&lt;br /&gt;Page_Unload&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8802277204728158618-5640536637438824845?l=aspdotnet-interview.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://aspdotnet-interview.blogspot.com/feeds/5640536637438824845/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8802277204728158618&amp;postID=5640536637438824845' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8802277204728158618/posts/default/5640536637438824845'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8802277204728158618/posts/default/5640536637438824845'/><link rel='alternate' type='text/html' href='http://aspdotnet-interview.blogspot.com/2008/09/how-many-types-of-page-load-functions.html' title='How Many types of Page Load functions in asp.net?'/><author><name>hazivali</name><uri>http://www.blogger.com/profile/12166895375962456310</uri><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-8802277204728158618.post-1152172315506054507</id><published>2008-09-16T23:52:00.000-07:00</published><updated>2008-09-16T23:54:25.731-07:00</updated><title type='text'>How to retrieve data row by row from a DataTable?</title><content type='html'>foreach(Datarow dr in table.rows)&lt;br /&gt;{&lt;br /&gt;  string str =  dr[0].ToString();&lt;br /&gt;  string str1 =  dr["columnName"].ToString();&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;In C# &lt;br /&gt;&lt;br /&gt;foreach(DataRow dr in dt.rows) //dt is Data table&lt;br /&gt;{&lt;br /&gt;&lt;br /&gt; string ABC= dr["Coloumn_Name"].Tostring;&lt;br /&gt;&lt;br /&gt;}&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8802277204728158618-1152172315506054507?l=aspdotnet-interview.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://aspdotnet-interview.blogspot.com/feeds/1152172315506054507/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8802277204728158618&amp;postID=1152172315506054507' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8802277204728158618/posts/default/1152172315506054507'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8802277204728158618/posts/default/1152172315506054507'/><link rel='alternate' type='text/html' href='http://aspdotnet-interview.blogspot.com/2008/09/how-to-retrieve-data-row-by-row-from.html' title='How to retrieve data row by row from a DataTable?'/><author><name>hazivali</name><uri>http://www.blogger.com/profile/12166895375962456310</uri><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-8802277204728158618.post-8339857289355323726</id><published>2008-09-16T23:35:00.000-07:00</published><updated>2008-09-16T23:48:37.304-07:00</updated><title type='text'>is it possible to use web site without web server from remote place?</title><content type='html'>Yes, It is Possible. As Website is Deployed In Web server &lt;br /&gt;in IIS. There is no need to have Web server in Remote Place.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8802277204728158618-8339857289355323726?l=aspdotnet-interview.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://aspdotnet-interview.blogspot.com/feeds/8339857289355323726/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8802277204728158618&amp;postID=8339857289355323726' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8802277204728158618/posts/default/8339857289355323726'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8802277204728158618/posts/default/8339857289355323726'/><link rel='alternate' type='text/html' href='http://aspdotnet-interview.blogspot.com/2008/09/is-it-possible-to-use-web-site-without.html' title='is it possible to use web site without web server from remote place?'/><author><name>hazivali</name><uri>http://www.blogger.com/profile/12166895375962456310</uri><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-8802277204728158618.post-6796024424142930388</id><published>2008-09-16T23:32:00.000-07:00</published><updated>2008-09-16T23:33:04.853-07:00</updated><title type='text'>is it possible to set more than web.config file for an ASP.net APPLICATION?can it run?how is it possible?</title><content type='html'>Yes we can have as many as Web.Config Files we want. When &lt;br /&gt;we have multiple Web.config files the CLR will Search for &lt;br /&gt;the Config file which is just below the calling code.&lt;br /&gt;&lt;br /&gt;We can create two or more web.config&lt;br /&gt;file in a ASP.NET application. For Example, we have to&lt;br /&gt;sessions to execute 1. End-User point of view and 2.&lt;br /&gt;Admin/User Point of View. In our web application we can&lt;br /&gt;create a folder named Admin - inside that folder we can&lt;br /&gt;create a web.config and in root folder too we can create a&lt;br /&gt;web.config. Admin folder's web pages will execute based on&lt;br /&gt;admin folder web.config and in the same way to root folder.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8802277204728158618-6796024424142930388?l=aspdotnet-interview.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://aspdotnet-interview.blogspot.com/feeds/6796024424142930388/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8802277204728158618&amp;postID=6796024424142930388' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8802277204728158618/posts/default/6796024424142930388'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8802277204728158618/posts/default/6796024424142930388'/><link rel='alternate' type='text/html' href='http://aspdotnet-interview.blogspot.com/2008/09/is-it-possible-to-set-more-than.html' title='is it possible to set more than web.config file for an ASP.net APPLICATION?can it run?how is it possible?'/><author><name>hazivali</name><uri>http://www.blogger.com/profile/12166895375962456310</uri><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-8802277204728158618.post-6827825381566456633</id><published>2008-09-16T23:22:00.000-07:00</published><updated>2008-09-16T23:23:34.287-07:00</updated><title type='text'>IS IT POSSIBLE TO SET TIME FOR COOKIES?HOW IT IS POSSIBLE?</title><content type='html'>Yes,&lt;br /&gt;Request.Cookies["UserCoook"].Expires = DateTime.Now;&lt;br /&gt;&lt;br /&gt;Likewise we can able to set time fro cookies&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8802277204728158618-6827825381566456633?l=aspdotnet-interview.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://aspdotnet-interview.blogspot.com/feeds/6827825381566456633/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8802277204728158618&amp;postID=6827825381566456633' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8802277204728158618/posts/default/6827825381566456633'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8802277204728158618/posts/default/6827825381566456633'/><link rel='alternate' type='text/html' href='http://aspdotnet-interview.blogspot.com/2008/09/is-it-possible-to-set-time-for.html' title='IS IT POSSIBLE TO SET TIME FOR COOKIES?HOW IT IS POSSIBLE?'/><author><name>hazivali</name><uri>http://www.blogger.com/profile/12166895375962456310</uri><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-8802277204728158618.post-2195472533822995102</id><published>2008-09-16T10:52:00.000-07:00</published><updated>2008-09-16T11:00:49.588-07:00</updated><title type='text'>How to use Treeview IE Web Control</title><content type='html'>The first step is to install the IE Web Controls from Microsoft.The link to download and&lt;br /&gt;install these controls is as follows: &lt;a href="http://msdn.microsoft.com/downloads/samples/internet/default.asp?url=/downloads/samples/internet/asp_dot_net_servercontrols/webcontrols/default.asp"&gt;http://msdn.microsoft.com/downloads/samples/&lt;br /&gt;internet/default.asp?url=/downloads/samples/internet/asp_dot_net_servercontrols/webcontrols/default.asp&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;The next step is to add a reference to the controls on your page:&lt;br /&gt;&amp;lt;%@ Register TagPrefix=”mytree” Namespace=”Microsoft.Web.UI.WebControls”&lt;br /&gt;Assembly=”Microsoft.Web.UI.WebControls” %&amp;gt;;&lt;br /&gt;&amp;lt;%@ import namespace=”Microsoft.Web.UI.WebControls” %&amp;gt;;&lt;br /&gt;Then you add the TreeView control to your page:&lt;br /&gt;&lt;mytree:treeview id="”myTree”" runat="”server”"&gt;&lt;br /&gt;&lt;/mytree:treeview&gt;&lt;br /&gt;The last step is to add the node information to the TreeView.This is the list of items that&lt;br /&gt;will appear when you expand the tree:&lt;br /&gt;&amp;lt;mytree:treeview runat=”server” id=”myTree”&amp;gt;&lt;br /&gt;&amp;lt;mytree:treenode text=”Cars”&amp;gt;&lt;br /&gt;&amp;lt;mytree:treenode text=”Ford” /&amp;gt;&lt;br /&gt;&amp;lt;mytree:treenode text=”Toyota” /&amp;gt;&lt;br /&gt;&amp;lt;mytree:treenode text=”Infiniti” /&amp;gt;&lt;br /&gt;&amp;lt;/mytree:treenode&amp;gt;&lt;br /&gt;&amp;lt;/mytree:treeview&amp;gt;&lt;mytree:treeview id="”myTree”" runat="”server”"&gt;&lt;mytree:treeview id="”myTree”" runat="”server”"&gt;&lt;mytree:treenode text="”Cars”"&gt;&lt;mytree:treenode text="”Ford”"&gt;&lt;mytree:treenode text="”Toyota”"&gt;&lt;mytree:treenode text="”Infiniti”"&gt;&lt;/mytree:treenode&gt;&lt;/mytree:treenode&gt;&lt;mytree:treenode text="”Cars”"&gt;&lt;mytree:treenode text="”Ford”"&gt;&lt;mytree:treenode text="”Toyota”"&gt;&lt;/mytree:treenode&gt;&lt;/mytree:treenode&gt;&lt;/mytree:treenode&gt;&lt;/mytree:treenode&gt;&lt;/mytree:treenode&gt;&lt;/mytree:treeview&gt;&lt;/mytree:treeview&gt;&lt;br /&gt;&lt;mytree:treeview id="”myTree”" runat="”server”"&gt;&lt;mytree:treeview id="”myTree”" runat="”server”"&gt;&lt;mytree:treenode text="”Cars”"&gt;&lt;mytree:treenode text="”Ford”"&gt;&lt;mytree:treenode text="”Cars”"&gt;&lt;mytree:treenode text="”Ford”"&gt;&lt;mytree:treenode text="”Toyota”"&gt;&lt;mytree:treenode text="”Infiniti”"&gt;&lt;/mytree:treenode&gt;&lt;/mytree:treenode&gt;&lt;br /&gt;Here, we created one node called Cars and then added nodes within that node for different&lt;br /&gt;car manufacturers.&lt;br /&gt;&lt;br /&gt;The TreeView IE Web Control is a very powerful and easy-to-use control. In this example,&lt;br /&gt;you saw how easy it was to create an explorer-like expandable tree.When adding&lt;br /&gt;nodes to the TreeView, you use a very XML-like approach whereby the nodes that are&lt;br /&gt;under a parent node are contained inside the parent node tag. If you encounter errors&lt;br /&gt;when trying to add a reference to your page, or you receive errors indicating that the&lt;br /&gt;Web Controls cannot be found, copy the Web Controls DLL to the bin directory of&lt;br /&gt;your application.&lt;br /&gt;&lt;/mytree:treenode&gt;&lt;/mytree:treenode&gt;&lt;/mytree:treenode&gt;&lt;/mytree:treenode&gt;&lt;/mytree:treeview&gt;&lt;/mytree:treeview&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8802277204728158618-2195472533822995102?l=aspdotnet-interview.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://aspdotnet-interview.blogspot.com/feeds/2195472533822995102/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8802277204728158618&amp;postID=2195472533822995102' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8802277204728158618/posts/default/2195472533822995102'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8802277204728158618/posts/default/2195472533822995102'/><link rel='alternate' type='text/html' href='http://aspdotnet-interview.blogspot.com/2008/09/using-treeview-ie-web-control.html' title='How to use Treeview IE Web Control'/><author><name>satish</name><uri>http://www.blogger.com/profile/11104095808954112849</uri><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-8802277204728158618.post-3937765335771848903</id><published>2008-09-16T06:54:00.000-07:00</published><updated>2008-09-16T06:56:06.244-07:00</updated><title type='text'>What is WebService ?</title><content type='html'>a software system designed to support interoperable&lt;br /&gt;machine-to-machine interaction over a network&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Web Service---&gt;is nothing but  " Programmable and reusable business logic &lt;br /&gt;with set of classes presented on the web server"&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8802277204728158618-3937765335771848903?l=aspdotnet-interview.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://aspdotnet-interview.blogspot.com/feeds/3937765335771848903/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8802277204728158618&amp;postID=3937765335771848903' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8802277204728158618/posts/default/3937765335771848903'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8802277204728158618/posts/default/3937765335771848903'/><link rel='alternate' type='text/html' href='http://aspdotnet-interview.blogspot.com/2008/09/what-is-webservice_16.html' title='What is WebService ?'/><author><name>hazivali</name><uri>http://www.blogger.com/profile/12166895375962456310</uri><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-8802277204728158618.post-2205353478478987486</id><published>2008-09-16T06:41:00.000-07:00</published><updated>2008-09-16T06:51:54.995-07:00</updated><title type='text'>How to deploy the Asp.Net Project ?</title><content type='html'>2 ways &lt;br /&gt;create a MSI package&lt;br /&gt;or place the precompiled webpages in a shared folder on the &lt;br /&gt;hosting server.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8802277204728158618-2205353478478987486?l=aspdotnet-interview.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://aspdotnet-interview.blogspot.com/feeds/2205353478478987486/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8802277204728158618&amp;postID=2205353478478987486' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8802277204728158618/posts/default/2205353478478987486'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8802277204728158618/posts/default/2205353478478987486'/><link rel='alternate' type='text/html' href='http://aspdotnet-interview.blogspot.com/2008/09/how-to-deploy-aspnet-project.html' title='How to deploy the Asp.Net Project ?'/><author><name>hazivali</name><uri>http://www.blogger.com/profile/12166895375962456310</uri><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-8802277204728158618.post-472650870543322318</id><published>2008-09-16T06:23:00.000-07:00</published><updated>2008-09-16T06:39:28.922-07:00</updated><title type='text'>What is Partial in ASP.NET 2.0?</title><content type='html'>We can split one part of a class in one file and the other&lt;br /&gt;part in some other file using the partial keyword. The&lt;br /&gt;compiler merges these partial classes spread across one or&lt;br /&gt;more source files into a single compiled class at the time&lt;br /&gt;of compilation .&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8802277204728158618-472650870543322318?l=aspdotnet-interview.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://aspdotnet-interview.blogspot.com/feeds/472650870543322318/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8802277204728158618&amp;postID=472650870543322318' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8802277204728158618/posts/default/472650870543322318'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8802277204728158618/posts/default/472650870543322318'/><link rel='alternate' type='text/html' href='http://aspdotnet-interview.blogspot.com/2008/09/what-is-partial-in-aspnet-20.html' title='What is Partial in ASP.NET 2.0?'/><author><name>hazivali</name><uri>http://www.blogger.com/profile/12166895375962456310</uri><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-8802277204728158618.post-5570930282702732189</id><published>2008-09-16T06:19:00.000-07:00</published><updated>2008-09-16T06:20:29.909-07:00</updated><title type='text'>What is the difference between a session object and cache object?</title><content type='html'>Caching :- used to minimize the DB/Server hit and improves &lt;br /&gt;Performance.data is available to all users.Can expire &lt;br /&gt;automatically once duration is specified and untill memory &lt;br /&gt;is available or expires as application restarts.&lt;br /&gt;&lt;br /&gt;Session  :- used to store data specific to user and remains &lt;br /&gt;untill user loggs off or session expires. usually session &lt;br /&gt;lasts for 20 minutes(configurable)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8802277204728158618-5570930282702732189?l=aspdotnet-interview.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://aspdotnet-interview.blogspot.com/feeds/5570930282702732189/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8802277204728158618&amp;postID=5570930282702732189' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8802277204728158618/posts/default/5570930282702732189'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8802277204728158618/posts/default/5570930282702732189'/><link rel='alternate' type='text/html' href='http://aspdotnet-interview.blogspot.com/2008/09/what-is-difference-between-session.html' title='What is the difference between a session object and cache object?'/><author><name>hazivali</name><uri>http://www.blogger.com/profile/12166895375962456310</uri><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-8802277204728158618.post-8467631908536293256</id><published>2008-09-09T05:49:00.000-07:00</published><updated>2008-09-09T05:50:59.389-07:00</updated><title type='text'>what is view state?</title><content type='html'>View State is maintains users state at Client Side.It &lt;br /&gt;provides property to store retention value between multiple &lt;br /&gt;web request.It stores value in HTML hidden field in web page.&lt;br /&gt;&lt;br /&gt;View State is a mechanism by which we can maintain the &lt;br /&gt;state during the subsequent post back of same .aspx &lt;br /&gt;page...means suppose we have a registration form to fill i &lt;br /&gt;fill all the entries but some entries were wrong then what &lt;br /&gt;happen next i'll get only those value which was wrong means &lt;br /&gt;i won't fill all the value again just fill the wrong value &lt;br /&gt;only...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8802277204728158618-8467631908536293256?l=aspdotnet-interview.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://aspdotnet-interview.blogspot.com/feeds/8467631908536293256/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8802277204728158618&amp;postID=8467631908536293256' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8802277204728158618/posts/default/8467631908536293256'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8802277204728158618/posts/default/8467631908536293256'/><link rel='alternate' type='text/html' href='http://aspdotnet-interview.blogspot.com/2008/09/what-is-view-state.html' title='what is view state?'/><author><name>hazivali</name><uri>http://www.blogger.com/profile/12166895375962456310</uri><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-8802277204728158618.post-101071744745951006</id><published>2008-09-09T05:46:00.001-07:00</published><updated>2008-09-09T05:46:47.189-07:00</updated><title type='text'>What is boxing and unboxing ?</title><content type='html'>BOXING&lt;br /&gt;? Boxing is an implicit conversion of a value type to &lt;br /&gt;the type object&lt;br /&gt;&lt;br /&gt;UNBOXING&lt;br /&gt;? Unboxing is an explicit conversion from the type &lt;br /&gt;object to a value type&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8802277204728158618-101071744745951006?l=aspdotnet-interview.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://aspdotnet-interview.blogspot.com/feeds/101071744745951006/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8802277204728158618&amp;postID=101071744745951006' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8802277204728158618/posts/default/101071744745951006'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8802277204728158618/posts/default/101071744745951006'/><link rel='alternate' type='text/html' href='http://aspdotnet-interview.blogspot.com/2008/09/what-is-boxing-and-unboxing.html' title='What is boxing and unboxing ?'/><author><name>hazivali</name><uri>http://www.blogger.com/profile/12166895375962456310</uri><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-8802277204728158618.post-5965737177417912845</id><published>2008-09-09T05:33:00.000-07:00</published><updated>2008-09-09T05:39:02.670-07:00</updated><title type='text'>What is sequence of code in retrieving data from database?</title><content type='html'>SQLConnection conn = new&lt;br /&gt;SQLConnection("DataSource=;InitialCatalog=;User Id=;Password=");&lt;br /&gt;SQLCommand cmd=new SQLCommand("select * from tablename",conn);&lt;br /&gt;DataAdapter da=new DataAdapter(cmd);&lt;br /&gt;Dataset ds=new Dataset();&lt;br /&gt;da.fill(ds,"tablename");&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8802277204728158618-5965737177417912845?l=aspdotnet-interview.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://aspdotnet-interview.blogspot.com/feeds/5965737177417912845/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8802277204728158618&amp;postID=5965737177417912845' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8802277204728158618/posts/default/5965737177417912845'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8802277204728158618/posts/default/5965737177417912845'/><link rel='alternate' type='text/html' href='http://aspdotnet-interview.blogspot.com/2008/09/what-is-sequence-of-code-in-retrieving.html' title='What is sequence of code in retrieving data from database?'/><author><name>hazivali</name><uri>http://www.blogger.com/profile/12166895375962456310</uri><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-8802277204728158618.post-7528281629785616553</id><published>2008-09-09T05:32:00.000-07:00</published><updated>2008-09-09T05:33:32.858-07:00</updated><title type='text'>what is manifest?</title><content type='html'>Assemblies data is stored in manifest&lt;br /&gt;In manifest include&lt;br /&gt;assemblies information&lt;br /&gt;like version of assemblies&lt;br /&gt;security information etc&lt;br /&gt;manifest is stored in PE file that is portable Executable &lt;br /&gt;file in MSIL(Microsoft intermediate Language)&lt;br /&gt;Manifest make assembly self describing.CLR use manifest &lt;br /&gt;for execution.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8802277204728158618-7528281629785616553?l=aspdotnet-interview.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://aspdotnet-interview.blogspot.com/feeds/7528281629785616553/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8802277204728158618&amp;postID=7528281629785616553' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8802277204728158618/posts/default/7528281629785616553'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8802277204728158618/posts/default/7528281629785616553'/><link rel='alternate' type='text/html' href='http://aspdotnet-interview.blogspot.com/2008/09/what-is-manifest.html' title='what is manifest?'/><author><name>hazivali</name><uri>http://www.blogger.com/profile/12166895375962456310</uri><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-8802277204728158618.post-3189934684847046416</id><published>2008-09-09T05:25:00.000-07:00</published><updated>2008-09-09T05:26:57.044-07:00</updated><title type='text'>How do you do validations. Whether client-side or server-side validations are better?</title><content type='html'>By default all the asp.net &lt;br /&gt;controls are server controls that runs server side, so &lt;br /&gt;validation controls do. To reduce the burden on the server &lt;br /&gt;we will use java script validation which will be done client &lt;br /&gt;side.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8802277204728158618-3189934684847046416?l=aspdotnet-interview.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://aspdotnet-interview.blogspot.com/feeds/3189934684847046416/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8802277204728158618&amp;postID=3189934684847046416' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8802277204728158618/posts/default/3189934684847046416'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8802277204728158618/posts/default/3189934684847046416'/><link rel='alternate' type='text/html' href='http://aspdotnet-interview.blogspot.com/2008/09/how-do-you-do-validations-whether.html' title='How do you do validations. Whether client-side or server-side validations are better?'/><author><name>hazivali</name><uri>http://www.blogger.com/profile/12166895375962456310</uri><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-8802277204728158618.post-3443589647747959671</id><published>2008-09-09T05:11:00.000-07:00</published><updated>2008-09-09T05:12:19.665-07:00</updated><title type='text'>What is Http handler?</title><content type='html'>It as a  program.(or handler, or module), it execute some &lt;br /&gt;code when the user send some request. An .aspx page can be &lt;br /&gt;thought as a HTTP Handler too, which implements more &lt;br /&gt;functions.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8802277204728158618-3443589647747959671?l=aspdotnet-interview.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://aspdotnet-interview.blogspot.com/feeds/3443589647747959671/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8802277204728158618&amp;postID=3443589647747959671' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8802277204728158618/posts/default/3443589647747959671'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8802277204728158618/posts/default/3443589647747959671'/><link rel='alternate' type='text/html' href='http://aspdotnet-interview.blogspot.com/2008/09/what-is-http-handler.html' title='What is Http handler?'/><author><name>hazivali</name><uri>http://www.blogger.com/profile/12166895375962456310</uri><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-8802277204728158618.post-664076193860940628</id><published>2008-09-09T05:01:00.001-07:00</published><updated>2008-09-09T05:10:57.192-07:00</updated><title type='text'>Webconfig file is cofiguration of server or browser?</title><content type='html'>it is a server configuration file for a particular &lt;br /&gt;application.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8802277204728158618-664076193860940628?l=aspdotnet-interview.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://aspdotnet-interview.blogspot.com/feeds/664076193860940628/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8802277204728158618&amp;postID=664076193860940628' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8802277204728158618/posts/default/664076193860940628'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8802277204728158618/posts/default/664076193860940628'/><link rel='alternate' type='text/html' href='http://aspdotnet-interview.blogspot.com/2008/09/webconfig-file-is-cofiguration-of_09.html' title='Webconfig file is cofiguration of server or browser?'/><author><name>hazivali</name><uri>http://www.blogger.com/profile/12166895375962456310</uri><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-8802277204728158618.post-4728358377706410929</id><published>2008-09-09T05:01:00.000-07:00</published><updated>2008-09-09T05:03:54.605-07:00</updated><title type='text'>Webconfig file is cofiguration of server or browser?</title><content type='html'>it is a server configuration file for a particular &lt;br /&gt;application.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8802277204728158618-4728358377706410929?l=aspdotnet-interview.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://aspdotnet-interview.blogspot.com/feeds/4728358377706410929/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8802277204728158618&amp;postID=4728358377706410929' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8802277204728158618/posts/default/4728358377706410929'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8802277204728158618/posts/default/4728358377706410929'/><link rel='alternate' type='text/html' href='http://aspdotnet-interview.blogspot.com/2008/09/webconfig-file-is-cofiguration-of.html' title='Webconfig file is cofiguration of server or browser?'/><author><name>hazivali</name><uri>http://www.blogger.com/profile/12166895375962456310</uri><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-8802277204728158618.post-6157496980838707168</id><published>2008-09-09T05:00:00.000-07:00</published><updated>2008-09-09T05:01:30.930-07:00</updated><title type='text'>What are the major differences between asp.net1.1 and asp.net 2.0?</title><content type='html'>Asp.net 2.0 enhanced with many new features.&lt;br /&gt;&lt;br /&gt;* Partial Classes&lt;br /&gt;* Master pages&lt;br /&gt;* Skins and Themes&lt;br /&gt;* Roles and Member Profiles&lt;br /&gt;* Generics&lt;br /&gt;* Added many new server controls like      &lt;br /&gt;  Grid View,Details View, File Upload etc..,&lt;br /&gt;* Web Personalization - Web Parts&lt;br /&gt;* New Folders lime App_Browsers,App_Code,etc..,&lt;br /&gt;&lt;br /&gt;In ASP.NET user have to install the IIS. But In case of &lt;br /&gt;ASP.NET 2.0 IIS is coming with the installation process. &lt;br /&gt;another facility is the master page which is in ASP.NET 2.o &lt;br /&gt;But not in ASP.net 1.1.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8802277204728158618-6157496980838707168?l=aspdotnet-interview.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://aspdotnet-interview.blogspot.com/feeds/6157496980838707168/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8802277204728158618&amp;postID=6157496980838707168' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8802277204728158618/posts/default/6157496980838707168'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8802277204728158618/posts/default/6157496980838707168'/><link rel='alternate' type='text/html' href='http://aspdotnet-interview.blogspot.com/2008/09/what-are-major-differences-between.html' title='What are the major differences between asp.net1.1 and asp.net 2.0?'/><author><name>hazivali</name><uri>http://www.blogger.com/profile/12166895375962456310</uri><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-8802277204728158618.post-7967089512303854664</id><published>2008-09-09T04:55:00.000-07:00</published><updated>2008-09-09T05:18:15.530-07:00</updated><title type='text'>what are webservices?In which circumstances we can go for webservices?</title><content type='html'>Web service is a reusable component which resides in the &lt;br /&gt;web server. &lt;br /&gt;It is language independant and platform independant. This &lt;br /&gt;means that any application written in any language can use &lt;br /&gt;the service of a web service. &lt;br /&gt;It uses the SOAP protocal and communicates using XML.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8802277204728158618-7967089512303854664?l=aspdotnet-interview.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://aspdotnet-interview.blogspot.com/feeds/7967089512303854664/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8802277204728158618&amp;postID=7967089512303854664' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8802277204728158618/posts/default/7967089512303854664'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8802277204728158618/posts/default/7967089512303854664'/><link rel='alternate' type='text/html' href='http://aspdotnet-interview.blogspot.com/2008/09/what-is-webservice.html' title='what are webservices?In which circumstances we can go for webservices?'/><author><name>hazivali</name><uri>http://www.blogger.com/profile/12166895375962456310</uri><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-8802277204728158618.post-9206791210081814935</id><published>2008-09-09T00:16:00.000-07:00</published><updated>2008-09-09T00:17:36.286-07:00</updated><title type='text'>what is diffrance between response.write &amp; response.output.write</title><content type='html'>Respons.Write will display the value/expresion as it is.&lt;br /&gt;Response.Output.Write will display the formatted content.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8802277204728158618-9206791210081814935?l=aspdotnet-interview.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://aspdotnet-interview.blogspot.com/feeds/9206791210081814935/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8802277204728158618&amp;postID=9206791210081814935' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8802277204728158618/posts/default/9206791210081814935'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8802277204728158618/posts/default/9206791210081814935'/><link rel='alternate' type='text/html' href='http://aspdotnet-interview.blogspot.com/2008/09/what-is-diffrance-between-responsewrite.html' title='what is diffrance between response.write &amp; response.output.write'/><author><name>hazivali</name><uri>http://www.blogger.com/profile/12166895375962456310</uri><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-8802277204728158618.post-4520853410171182990</id><published>2008-09-09T00:06:00.000-07:00</published><updated>2008-09-09T00:15:50.162-07:00</updated><title type='text'>what is the difference b/w Asp.net server controls and html server controls in .net?</title><content type='html'>ASP.Net Server Controls:&lt;br /&gt;&lt;br /&gt;  1. ASP .NET Server Controls can detect the target &lt;br /&gt;browser’s capabilities and render themselves accordingly. &lt;br /&gt;No issues for compatibility issues of Browsers i.e page &lt;br /&gt;that might be used by both HTML 3.2 and HTML 4.0 browsers &lt;br /&gt;code is written in the Server Controls.&lt;br /&gt;&lt;br /&gt;2. Newer set of controls that can be used in the same &lt;br /&gt;manner as any HTML control like Calender controls. Without &lt;br /&gt;any need of Activex Control without bringing up issues of &lt;br /&gt;Browser compatibility).&lt;br /&gt;&lt;br /&gt;3. Processing would be done at the server side. In built &lt;br /&gt;functionality to check for few values(with Validation &lt;br /&gt;controls) so no need to choose between scripting language &lt;br /&gt;which would be incompatible with few browsers.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;HTML Server Controls:&lt;br /&gt;&lt;br /&gt;1. The HTML Server Controls follow the HTML-centric object &lt;br /&gt;model. Model similar to HTML&lt;br /&gt;&lt;br /&gt;2. Here the controls can be made to interact with Client &lt;br /&gt;side scripting. Processing would be done at client as well &lt;br /&gt;as server depending on your code. &lt;br /&gt;&lt;br /&gt;3. A HTML Server Control has similar abstraction with its &lt;br /&gt;corresponding HTML tag and offers no abstraction.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8802277204728158618-4520853410171182990?l=aspdotnet-interview.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://aspdotnet-interview.blogspot.com/feeds/4520853410171182990/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8802277204728158618&amp;postID=4520853410171182990' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8802277204728158618/posts/default/4520853410171182990'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8802277204728158618/posts/default/4520853410171182990'/><link rel='alternate' type='text/html' href='http://aspdotnet-interview.blogspot.com/2008/09/what-is-difference-bw-aspnet-server.html' title='what is the difference b/w Asp.net server controls and html server controls in .net?'/><author><name>hazivali</name><uri>http://www.blogger.com/profile/12166895375962456310</uri><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-8802277204728158618.post-8417543015927978238</id><published>2008-09-08T23:59:00.000-07:00</published><updated>2008-09-09T00:06:42.744-07:00</updated><title type='text'>Features in ASP.NET?</title><content type='html'>It has Comman Language Runtime execution Engin which&lt;br /&gt;translate the source code into Microsoft Intermediate&lt;br /&gt;Language (MSIL) .It is called Managed code.&lt;br /&gt;&lt;br /&gt;One of the main features of asp.net is:&lt;br /&gt;The code has not been Compiled instead of that Interpreting.&lt;br /&gt;By doing that, the performance of a website will be&lt;br /&gt;improved. Apart from that in asp.net we're using a&lt;br /&gt;programming code called templates. For example if a&lt;br /&gt;particular page of a website has been updated by inserting&lt;br /&gt;some codes the modification part will not be shown to the&lt;br /&gt;user when he is viewing the source code. apart from that&lt;br /&gt;presentation content and application content have been&lt;br /&gt;separated in Asp.net framework. So that the webdesigner can&lt;br /&gt;create the application and the programmer can develop the&lt;br /&gt;code for an application. And also in Asp.net application if&lt;br /&gt;any changes need to be done in a website it can be done&lt;br /&gt;inside the configuration setting of an application, instead&lt;br /&gt;of that we need not want to restart the webserver, whatever&lt;br /&gt;changes done in the configuration leavl will be altered.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8802277204728158618-8417543015927978238?l=aspdotnet-interview.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://aspdotnet-interview.blogspot.com/feeds/8417543015927978238/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8802277204728158618&amp;postID=8417543015927978238' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8802277204728158618/posts/default/8417543015927978238'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8802277204728158618/posts/default/8417543015927978238'/><link rel='alternate' type='text/html' href='http://aspdotnet-interview.blogspot.com/2008/09/features-in-aspnet.html' title='Features in ASP.NET?'/><author><name>hazivali</name><uri>http://www.blogger.com/profile/12166895375962456310</uri><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-8802277204728158618.post-3796544088878969685</id><published>2008-09-08T23:54:00.000-07:00</published><updated>2008-09-08T23:59:32.574-07:00</updated><title type='text'>what is the assembly?</title><content type='html'>Assembly is a small unit for development             &lt;br /&gt;Assemblies are provides Reusability,Versioning,and Security.&lt;br /&gt;Assemblies will maintain collection of userdefined types &lt;br /&gt;and resources information.&lt;br /&gt;&lt;br /&gt;Types of assemblies are:&lt;br /&gt;1.public&lt;br /&gt;2.private&lt;br /&gt;3.shared.&lt;br /&gt;4.satellite&lt;br /&gt;there will exceutable(.exe) assembly and Library code(.dll).&lt;br /&gt;Assembly contain version infornmation,metadata,actual code.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8802277204728158618-3796544088878969685?l=aspdotnet-interview.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://aspdotnet-interview.blogspot.com/feeds/3796544088878969685/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8802277204728158618&amp;postID=3796544088878969685' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8802277204728158618/posts/default/3796544088878969685'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8802277204728158618/posts/default/3796544088878969685'/><link rel='alternate' type='text/html' href='http://aspdotnet-interview.blogspot.com/2008/09/what-is-assembly.html' title='what is the assembly?'/><author><name>hazivali</name><uri>http://www.blogger.com/profile/12166895375962456310</uri><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-8802277204728158618.post-2006971632334639799</id><published>2008-09-08T23:51:00.000-07:00</published><updated>2008-09-08T23:54:30.588-07:00</updated><title type='text'>what is CLR?</title><content type='html'>The .net frame work provides a runtime enviornment called &lt;br /&gt;the common language runtime(CLR)&lt;br /&gt;&lt;br /&gt;CLR handels the execution of code and provides useful &lt;br /&gt;services for the implementation of the program in addition &lt;br /&gt;to execution  code.&lt;br /&gt;&lt;br /&gt;CLR provides services like&lt;br /&gt;===&gt;Memory management&lt;br /&gt;===&gt;Thread Management&lt;br /&gt;====&gt;Security Management&lt;br /&gt;======&gt;Code Verification&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8802277204728158618-2006971632334639799?l=aspdotnet-interview.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://aspdotnet-interview.blogspot.com/feeds/2006971632334639799/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8802277204728158618&amp;postID=2006971632334639799' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8802277204728158618/posts/default/2006971632334639799'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8802277204728158618/posts/default/2006971632334639799'/><link rel='alternate' type='text/html' href='http://aspdotnet-interview.blogspot.com/2008/09/what-is-clr.html' title='what is CLR?'/><author><name>hazivali</name><uri>http://www.blogger.com/profile/12166895375962456310</uri><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></feed>
