Top Microsoft Related Interview Questions :: ALLInterview.com http://www.allinterview.com Top Microsoft Related Interview Questions en-us Difference between abstract class and interface http://www.allinterview.com/showanswers/28912.html Abstract classes can have implementations for some of its members (Methods), but the inteface class can't have implementation for any of its members. 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, 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 to Filter the Crystal reports? http://www.allinterview.com/showanswers/23475.html To filter the reports we have to use ?Formulas?. We can prepare the formulas with (1) Field Explorer (Window) or (2) Writing the code Syntax for preparing the formulas: {classname.FieldName}<operator> & value. Ex: ?{Employee.Emp_i What are the access-specifiers available in c#? http://www.allinterview.com/showanswers/4902.html The access-specifiers available in C# are: 1. public - The member can be accessed from anywhere 2. internal - The member can only be accessed from type it originates from or other types in the same assembly 3. protected - The member can only be 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 Which is the best institute in hyderabad to learn DotNet? http://www.allinterview.com/showanswers/62865.html YOU CAN JOIN IN DECCANSOFT plase logon www.deccansoft.com what&#039;s the Difference between DataView and DataTable? http://www.allinterview.com/showanswers/7643.html data tables holds all the rows of the table where as date view hold te filtered or reqired rows that are been retrived on a particular condition i think my answer is correct Is string reference type / value type? http://www.allinterview.com/showanswers/33094.html string is Reference Type How many .rpt files are be there in a main report having 2 sub repor http://www.allinterview.com/showanswers/27805.html we can keep, one .rpt file for both or we can individually create .rpt files and made them as single with sub report. Are there any limitations in crystal reports? http://www.allinterview.com/showanswers/15321.html 1. In export- While exporting data formatting is lost. 2. If database is having field whose length is more than 255 characters, then you cannot make formula using that field. 3.When you browse data just by right clicking on the field then it how many web.config files are there in 1 project.we can overwrite the http://www.allinterview.com/showanswers/36156.html There might be multiple web.config files for a single project depending on the hierarchy of folders inside the root folder of the project, so for each folder we can use one web.config file 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 datareader and dataset? http://www.allinterview.com/showanswers/33026.html Data Reader is a forward only and read only data DataSet is used to maintain relationships between multiple tables. Data Reader can't persist the data Data Set can persist the data