What you mean by partial Class in asp.net 2.0?
Answers were Sorted based on User's Feedback
Answer / sridhar
Your class definition can be split into multiple physical files; it allows a clean separation of business logic and the user interface
Is This Answer Correct ? | 8 Yes | 0 No |
Answer / amiya kumar parida
Partial class means a class declaired as partial can be
splited in to many physical file (i.e the defination of
class can be in more than one file) but at the time of
compilation it grouped up and compiled
Is This Answer Correct ? | 7 Yes | 0 No |
Answer / nallamani
This new feature, partial class, allows you to allot
different developers to develop the code for different
functionalities that are available in a single class.
Is This Answer Correct ? | 2 Yes | 0 No |
What is the recommended approach for asp.net mvc to globally intercept exceptions? What other functionality can be implemented with the approach? : Asp.Net MVC
How can you identify that the page is post back?
What is rending process in ASP.NET?
0 Answers Sans Pareil IT Services,
How to Insert a TextBox value in to Sql database using C# coding?
17 Answers HCL, Sona, TCS,
What is the use of dispose method?
How can I have a particular web page in an asp.net application which displays its own error page?
What is the use of global.asax file?
In order to get assembly info which namespace we should import?
Are cookies stored on server or client?
What is the syntax for datagrid and specifying columns ?
What are validator? Name the Validation controls in asp.net? How do u disable them?
You need to retrieve data from a Microsoft SQL Server 2000. Currently you are using an oleDbConnection object to connect to the database server. You need to be able to retrieve the data from the database server in XML format. Which approach would be the most efficient? Select all that apply. Each answer constitutes part of the whole answer. a) Change to the SQL .NET provider. b) Use the ExecuteXmlReader() method of the xxxCommand object c) Use the DOM to create the XML document. d) Use the XmlDocument.Load() method to create the XML Document.