Top ASP.NET Interview Questions :: ALLInterview.com http://www.allinterview.com Top ASP.NET Interview Questions en-us main difference between asp.net2.0,asp.net1.1,asp.net1.0 http://www.allinterview.com/showanswers/10433.html Feaures in 2.0: Special folders to make integration easier. navigation controls, login controls, new conrols, Master page, Website without IIS, Pesonalization, can we transfer data from one page to another page using viewstate i http://www.allinterview.com/showanswers/36626.html No.from my knowledge can not.Bcos viewstate life time is in single page.So while going to another page first page viewstate end already. How many types of session in asp.net2.0 http://www.allinterview.com/showanswers/20316.html ASP.NET pages typically post back to themselves in order to process events. Cross Page posting enables us to submit a form and have this form and all its control values posted to another page. The control which posts the page and all the cont What are the major differences between asp.net1.1 and asp.net 2.0? http://www.allinterview.com/showanswers/16541.html Benefits of ASP.NET 2.0 include: 1) A wide array of new controls, such as GridView control, MultiView, Wizard and FileUpload. 2) Superior separation of design and content, enabling developers and Web designers to work together. 3) A new mode How to Insert a TextBox value in to Sql database using C# coding? http://www.allinterview.com/showanswers/57509.html insert into emp(empname) values('"+textbox1.value+"') If you use html cocntrol textbox1.Value or If you use Aso cocntrol textbox1.Text How does Garbage collector(GC) works in .net http://www.allinterview.com/showanswers/27799.html Garbege collection are used to handle memory management. If we add a textbox and give the required field validator,and i add http://www.allinterview.com/showanswers/28612.html required field valodator is used to check where a browser has entered a value in atextbox or not. What is the difference between User Controls and Master Pages http://www.allinterview.com/showanswers/36311.html Both are code reduce features and reusability Purpose.When we create Masterpage that is common to overall project,whereas user controls these r used when we have requirement on specific criteria. Master page ex: INBOX,SPAM,DRAFT,TRASH etc in Y What is difference b/w Data Grid in ASP.Net 1.1 and Gridview in 2.0 http://www.allinterview.com/showanswers/36310.html Gridview is the replacement in .net 2.0 for the datagrid. the differences between them is >>sorting editing and paging are the additional capabilities in gridview which requires no coding while Datgrid requires the user coding .Gridview how to create bin folder in asp.net2.0 http://www.allinterview.com/showanswers/36343.html By default it will comes under in solution explorer of the current project what is DLL Hell and how it is solved in .NET? http://www.allinterview.com/showanswers/959.html This is a problem everybody faced in asp application which uses dll created in vb6. Dll process still be in memory even after the objest is destroyed exclusively causing the program to restart. .NET has a functionality call garbage collect difference between Trace and Debug ? http://www.allinterview.com/showanswers/20685.html According to Microsoft Documentation there is not much difference between Trace and Debug Class. Debug only works in debug mode and trace works in debug and release both mode. How to merge 2 tables fields in DataTable in asp.net http://www.allinterview.com/showanswers/23279.html you can use the query to merge the fields.that query will be executed through the sqlcommand. Difference between DataView and DataTable http://www.allinterview.com/showanswers/7644.html data view is used to filter and give sorting options that u have u added to form or component at design time. Alternatively u can use defaultview that is automatically available for every data table .when u use defaultview , u can specify fil What is Http handler? http://www.allinterview.com/showanswers/33089.html The HTTP handler is used in web services handle the information between web browser and web server.