Latest Answer: Dataset can represent an entire database in memory with full of tables,views and relations.Dataset is bulk loaded rather than loaded on demand.Dataset is designed to work without a continuing connection to the original datasource.There is no concept of ...
Latest Answer: CLR = Common Language Runtime. The CLR is a set of standard resources that (in theory) any .NET program can take advantage of, regardless of programming language. CTS = Common Type System. This is the range of types that the .NET runtime understands, ...
Latest Answer: Server-side code run at the server. It is a seprated file from html page.Client-side code is processd by browser and run at the client side ...
Latest Answer: System.Reflection is used to get data about assembly ...
What is the difference between Server.Transfer and Response.Redirect? Why would I choose one over the other?
Latest Answer: There is the ability to use both server side and client side code with in the code behind. Generally though the code behind is server side code. This code acts on Events that are fired that are not handled by the client side script.(JavaScript,vbscript, ...
Latest Answer: System.Data.Common ...
Can you give an example of when it would be appropriate to use a web service as opposed to a non-serviced .NET component
Latest Answer: Validation can be done both client side and server side.The advantage of using client side validation is better performance than server side validation as there is no round trip in client side validation.The disadvantage of client side validation is all ...
Latest Answer: An abstract class is a class that cannot be instantiated and having atleast one abstract method(having no body).Only we can derive a child class from the abstract class ...
View page << Previous 5 6 7 8 [9] 10 11 12 13 14 Next >>

Go Top