要访问我的网站,我必须按Run,然后,我才能访问它。
30秒后,我从Visual Studio收到这个错误:Unable to connect to the configured Web development server,网站变得无法访问。
如何克服这个问题?我想在不尝试连接的情况下启动网站,因为它变得无法访问。
我正在考虑使用C#的按需编译代码的能力作为脚本语言的基础。我想知道,如何用沙箱保护我正在执行的脚本,使它们无法访问文件系统、网络等。基本上,我希望对正在运行的脚本具有有限的权限。
我采取的步骤:
CompilerResults r = CSharpCodeProvider.CompileAssemblyFromSource(source);
Assembly a = r.CompiledAssembly;
IScript s = a.CreateInstance(...);
s.EntryPoint(...);