.Net Remoting enables communication between
applications across separate domains or networks. .Net objects are exposed to
remote processes to have interprocess communication..............
Read
answer
.Net Remoing allows communication between
server and client objects. To facilitate this, when new instance of remote
object is created in the client application, the client receives reference
(called proxy) to the server object...............
Read
answer
The remotable objects are the objects which can be
distributed accross domains, can be used with domain................
Read answer
Marshal-by-value-objects - When client calls
a method on marshal-by-value-object, the remoting system creates a copy of this
object and passes the copy to the client application domain.................
Read answer
Server Activation Mode: In this mode,
objects are created on the server when we call a method in the server class and
not when we create instance using new.................
Read answer
Also read
How do we access crystal reports in .NET?
What are the various components in crystal reports?
What basic steps are needed to display a simple report in crystal?..........
ASP.NET 2.0 Security Controls
With ASP.NET 2.0, things have changed for the better. For security-related
functionalities, ASP.NET 2.0 introduces a wide range of new
controls..............
ASP.NET 2.0 Validation Groups
With ASP.NET 2.0, Microsoft introduces a new feature known as validation groups,
which enables you to create different groups of validation controls and assign
them to input controls, such as text boxes. You can assign a validation group
to a collection of input controls if you want to validate the collection of
input controls on the same criteria............
ASP.NET 2.0 Themes
One of the neat features of ASP.NET 2.0 is themes, which enable you to define
the appearance of a set of controls once and apply the appearance to your
entire web application............
.NET Debug
& Trace
Here you can learn about break mode, options to step through code in .Net, Debug
Vs Trace in .Net, trace class, listeners collection of Trace and Debug objects
and Trace Switches.
Page Controller Pattern in
ASP.NET
Here it shows how a page controller pattern works in ASP.NET.
MVC Design
MVC, which stands for Model View Controller, is a design pattern that helps us
achieve the decoupling of data access and business logic from the presentation
code , and also gives us the opportunity to unit test the GUI effectively and
neatly, without worrying about GUI changes at all..........