|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
感觉很多控件都必须自己去写代码;用了WebMatrix感觉也不是很好,毕竟没有很强的WYSIWYG效果。现在就不知道如何是好了。程序|实行超等进门级:)哈哈~留个怀念。
//
//在指定使用程序域中实行代码
//
//
//
usingSystem;
usingSystem.Collections.Generic;
usingSystem.Text;
namespaceDomainTest
{
classProgram
{
privatestaticstringstrKey="Key1";
staticvoidMain(string[]args)
{
AppDomaindomaintest=AppDomain.CreateDomain("Domaintest");
stringstrVal="Value1";
domaintest.SetData(strKey,strVal);
//跨程序域挪用托付
CrossAppDomainDelegatecallback=delegate
{
//获得以后程序域
AppDomaindomain=AppDomain.CurrentDomain;
Console.WriteLine(string.Format("Value:{0}In{1}",domain.GetData(strKey),domain.FriendlyName));
};
//在指定程序域中实行代码
domaintest.DoCallBack(callback);
Console.Read();
}
}
}
在经过全球个人PC市场占有90%的微软对asp.net不断优化与整合后,asp.net与微软自身平台的动用上更加的高效,加上asp.net在应用上非常容易上手,相信asp.net仍会是最多客户选用的脚本语言,并会在未来几年继续领跑。 |
|