ASP.NET.in.a.Nutshell.Second.Edition [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

ASP.NET.in.a.Nutshell.Second.Edition [Electronic resources] - نسخه متنی

G. andrew Duthie; matthew Macdonald

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید









ApplicationHost

System.Web.Hosting (system.web.dll)sealed class

This class exposes a single shared CreateApplicationHost(
)
method, which allows you to create an application domain
that will be used to process ASP.NET requests. This method accepts
three parameters: the hostType (your
request-handling class, which will be created in the new domain),
virtualDir (the virtual directory for the
application domain, such as
"/MyApp"), and
physicalDir (the physical directory for the
application domain where the ASP.NET pages are located, such as
"c:\MyApp"). The
CreateApplicationHost( ) method returns the live
instance of the hostType class.

public sealed class 

ApplicationHost {
// Public Static Methods
public static object

CreateApplicationHost (Type

hostType , string

virtualDir , string

physicalDir );
}




/ 873