WebFarms

September 11, 2006 6:29am CST
what r webfarms in ASP.Net. when r they used& how r used?
2 responses
• India
21 Sep 06
what is ASP
• Philippines
27 Apr 10
ASP is Active Server Pages or Classic ASP, as it is more commonly known, is a technology that enables you to make dynamic and interactive web pages. ASP uses server-side scripting to dynamically produce web pages that are not affected by the type of browser the web site visitor is using. The default scripting language used for writing ASP is VBScript, although you can use other scripting languages like JScript (Microsoft's version of JavaScript). ASP pages have the extension .asp instead of .htm, when a page with the extension .asp is requested by a browser the web server knows to interpret any ASP contained within the web page before sending the HTML produced to the browser. This way all the ASP is run on the web server and no ASP will ever be passed to the web browser.
@darkdeivu (257)
• Philippines
27 Apr 10
A web form in ASP.Net is the basic document type used in ASP.NET server-side development. Web forms are essentially enhanced, server-side versions of HTML pages. HTML pages use the file extension “.htm” or “.html” while ASP.NET web forms use “.aspx”. The content of web forms is not exclusively server-side: typically, web forms contain a mixture of HTML, CSS and client-side JavaScript code as well as ASP.NET server controls and server-side programming code. When working with web forms in Visual Web Developer, you can switch between “Source” and “Design” views or work in “Split” view to see both simultaneously. “Source” view shows you the HTML markup of the page as well as any other code. “Design” view gives an approximate rendering of the document as it will appear in the browser window. However, this is only an approximation, it is still necessary to preview the page in a browser to get a proper idea of how your page is shaping up.