.NET FAQs Unleashed!
Skip Navigation Links
Interview questions on Design Patterns in .NET
ASP.NET Ajax Interview Questions
Interview questions related to security
C# Interview Questions
ASP.NET Interview Questions
Interview Questions in ASP.NET 2.0
Articles at dotnetuncle.com
Skip Navigation Links
OOPs questions in .NET
Questions on .NET Framework
ADO.NET Interview Questions
Short Answer questions in .NET
Frequently asked differences in .NET
Important commonly used Acronyms in .NET
MS SQL, Oracle SQL Interview Questions
 
    
Dotnetuncle's Tip:

  A field is essentially a member of a struct or a class. A field can have the following modifiers: public, internal, private, protected, static, new, unsafe, readonly, volatile

    

How to implement a web farm and a web garden? Whats a web farm and a web garden in ASP.NET? What is the difference between a web farm and web garden in ASP.NET?

An ASP NET interview can't be really complete without the web farm question.
So what is a web farm. A Web Farm is a setup of a website across multiple servers.

A Web Garden is a setup of a website on a single server with multiple processors. To set a a multi-server web application in ASP.NET, the following link may be read Click Here.

Page Redirection  Values Between Pages  Worker Process  Page Life Cycle  Global Variables  Postback  Server Control  Viewstate  Send Email  Namespace  Localization  Event Handler  Validation  Global.asax  HttpHandler  Session  Cookie  EnableViewState  Smart Navigation  Web Farm  Dataset  Register 


    
Dotnetuncle's Tip:

  In C Sharp, Type Safety is enforced during compile time. Yet the new keyword called dynamic can be used to enforce type safety at runtime. The keyword dynamic is introduced in .NET 4.0.