博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Web AppDomain
阅读量:5079 次
发布时间:2019-06-12

本文共 1150 字,大约阅读时间需要 3 分钟。

using System;using System.Collections.Generic;using System.IO;using System.Linq;using System.Web;using System.Web.Hosting;using System.Web.UI;using System.Web.UI.WebControls;namespace WebApplication3{    public partial class WebForm1 : System.Web.UI.Page    {        protected void Page_Load(object sender, EventArgs e)        {            Type hostType = typeof(Intelligencer);            string f = hostType.FullName;            Intelligencer intelligencer = System.Web.Hosting.ApplicationHost.CreateApplicationHost(hostType, "/", Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "bin")) as Intelligencer;//方法按照以下顺序寻找hostType定义:1.GAC,2.网站物理文件目录Bin文件夹下,如果没有加到GAC中的话,在网站应用程序下创建Bin文件夹,然后将程序集放入。            ltl1.Text += string.Format("Current Domain ID: {0} 
", AppDomain.CurrentDomain.Id); ltl1.Text += string.Format("Virtual Path: {0}
", HostingEnvironment.ApplicationVirtualPath); ltl1.Text += string.Format("Physcical Path: {0}
", HostingEnvironment.ApplicationPhysicalPath); } } public class Intelligencer : System.MarshalByRefObject { }}

 

转载于:https://www.cnblogs.com/JingG/archive/2013/05/29/3106412.html

你可能感兴趣的文章
新作《ASP.NET MVC 5框架揭秘》正式出版
查看>>
IdentityServer4-用EF配置Client(一)
查看>>
WPF中实现多选ComboBox控件
查看>>
读构建之法第四章第十七章有感
查看>>
Windows Phone开发(4):框架和页 转:http://blog.csdn.net/tcjiaan/article/details/7263146
查看>>
Unity3D研究院之打开Activity与调用JAVA代码传递参数(十八)【转】
查看>>
python asyncio 异步实现mongodb数据转xls文件
查看>>
TestNG入门
查看>>
【ul开发攻略】HTML5/CSS3菜单代码 阴影+发光+圆角
查看>>
IOS-图片操作集合
查看>>
模板统计LA 4670 Dominating Patterns
查看>>
团队项目开发客户端——登录子系统的设计
查看>>
IO—》Properties类&序列化流与反序列化流
查看>>
session如何保存在专门的StateServer服务器中
查看>>
react展示数据
查看>>
测试计划
查看>>
选择器
查看>>
Mysql与Oracle 的对比
查看>>
jquery实现限制textarea输入字数
查看>>
thinkphp5 csv格式导入导出(多数据处理)
查看>>