一台服务器多个网站Dll共享,共享服务器上的FSharp站点,哪些dll是否需要包含在bin文件夹中?...

哪些dll是否需要包含在bin文件夹中? 还是我需要在它自己的服务器上安装F#?共享服务器上的FSharp站点,哪些dll是否需要包含在bin文件夹中?

NB: 解决

所有FSharp的dll现在在宾

该网站使用的是Visual Studio中的发布选项

的允许预编译站点部署的网站可更新必须是未检查从我的站点10

错误:

该系统找不到指定的文件

说明:当前Web请求的执行过程中发生未处理的异常。请查看堆栈跟踪以获取有关该错误的更多信息以及源代码的位置。

异常详细信息:System.ComponentModel.Win32Exception:系统找不到指定的文件

源错误:

当前Web请求的执行过程中生成了未处理的异常。关于异常的来源和位置的信息可以使用下面的异常堆栈跟踪来标识。

堆栈跟踪:

[Win32Exception (0x80004005): The system cannot find the file specified]

System.Diagnostics.Process.StartWithCreateProcess(ProcessStartInfo startInfo) +2097

System.Diagnostics.Process.Start() +140

Microsoft.FSharp.Compiler.CodeDom.Internal.Compiler.compileFiles(String args, CompilerResults res) +120

Microsoft.FSharp.Compiler.CodeDom.Internal.Compiler.compileAssemblyFromFileBatch(CompilerParameters options, String[] fileNames, CompilerResults results, FastFunc`2 sortf) +278

System.CodeDom.Compiler.CodeDomProvider.CompileAssemblyFromFile(CompilerParameters options, String[] fileNames) +23

System.Web.Compilation.AssemblyBuilder.Compile() +843

System.Web.Compilation.BuildProvidersCompiler.PerformBuild() +164

System.Web.Compilation.BuildManager.CompileWebFile(VirtualPath virtualPath) +267

System.Web.Compilation.BuildManager.GetVPathBuildResultInternal(VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile) +582

System.Web.Compilation.BuildManager.GetVPathBuildResultWithNoAssert(HttpContext context, VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile) +93

System.Web.UI.BaseTemplateParser.GetReferencedType(VirtualPath virtualPath, Boolean allowNoCompile) +325

System.Web.UI.PageParser.EnsureMasterPageFileFromConfigApplied() +89

System.Web.UI.PageParser.HandlePostParse() +16

System.Web.UI.TemplateParser.Parse() +155

System.Web.Compilation.BaseTemplateBuildProvider.get_CodeCompilerType() +105

System.Web.Compilation.BuildProvider.GetCompilerTypeFromBuildProvider(BuildProvider buildProvider) +54

System.Web.Compilation.BuildProvidersCompiler.ProcessBuildProviders() +182

System.Web.Compilation.BuildProvidersCompiler.PerformBuild() +29

System.Web.Compilation.BuildManager.CompileWebFile(VirtualPath virtualPath) +267

System.Web.Compilation.BuildManager.GetVPathBuildResultInternal(VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile) +582

System.Web.Compilation.BuildManager.GetVPathBuildResultWithNoAssert(HttpContext context, VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile) +93

System.Web.Compilation.BuildManager.GetVirtualPathObjectFactory(VirtualPath virtualPath, HttpContext context, Boolean allowCrossApp, Boolean noAssert) +111

System.Web.Compilation.BuildManager.CreateInstanceFromVirtualPath(VirtualPath virtualPath, Type requiredBaseType, HttpContext context, Boolean allowCrossApp, Boolean noAssert) +54

System.Web.UI.PageHandlerFactory.GetHandlerHelper(HttpContext context, String requestType, VirtualPath virtualPath, String physicalPath) +31

System.Web.UI.PageHandlerFactory.System.Web.IHttpHandlerFactory2.GetHandler(HttpContext context, String requestType, VirtualPath virtualPath, String physicalPath) +40

System.Web.HttpApplication.MapHttpHandler(HttpContext context, String requestType, VirtualPath path, String pathTranslated, Boolean useAppConfig) +139

System.Web.MapHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +128

System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +161

版本信息:Microsoft .NET Framework版本:2.0.50727.1433; ASP.NET版本:2.0.50727.1433

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
好的,以下是一个简单的HTML钢琴代码: ``` <!DOCTYPE html> <html> <head> <title>钢琴</title> <style> .key { width: 50px; height: 200px; margin: 5px; float: left; background-color: white; border: 1px solid black; } .black { width: 30px; height: 120px; margin: -120px 0 0 -15px; background-color: black; position: relative; z-index: 1; } .clearfix { clear: both; } </style> </head> <body> <div class="key" onclick="new Audio('C.mp3').play()"></div> <div class="black" onclick="new Audio('Csharp.mp3').play()"></div> <div class="key" onclick="new Audio('D.mp3').play()"></div> <div class="black" onclick="new Audio('Dsharp.mp3').play()"></div> <div class="key" onclick="new Audio('E.mp3').play()"></div> <div class="key" onclick="new Audio('F.mp3').play()"></div> <div class="black" onclick="new Audio('Fsharp.mp3').play()"></div> <div class="key" onclick="new Audio('G.mp3').play()"></div> <div class="black" onclick="new Audio('Gsharp.mp3').play()"></div> <div class="key" onclick="new Audio('A.mp3').play()"></div> <div class="black" onclick="new Audio('Asharp.mp3').play()"></div> <div class="key" onclick="new Audio('B.mp3').play()"></div> <div class="clearfix"></div> </body> </html> ``` 这段代码使用HTML和CSS创建了一个简单的钢琴,其黑色琴键用一个相对定位的 div 元素实现,并在上面覆盖了一个白色琴键。每个琴键都有一个onclick事件处理程序,当用户单击它时,它将播放相应的音频文件。在这个代码,音频文件以 .mp3 格式存储,并通过HTML5的Audio对象来播放。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值