ASP.NET新手需要帮助配置wsaspnet-websockets服务器
本文关键字:配置 wsaspnet-websockets 服务器 帮助 NET 新手 ASP | 更新日期: 2023-09-27 17:55:42
我是ASP.NET的新手(以前做过一些经典的ASP,但我的情况发生了变化!(,需要获得浏览器使用websocket与服务器对话的概念证明。
我下载了http://wsaspnet.codeplex.com/
我将它安装在本地IIS webroot中一个名为"counter"的目录中(counter包含文件夹Web、WsTestClient和文件wsaspnet.sln(
我发现我需要将Global.asax从/counter/Web复制到/:p
当我访问http://localhost/counter/Web/Default.aspx我得到以下错误:
Compilation Error
Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.
Compiler Error Message: CS0103: The name 'WebSocks' does not exist in the current context
Source Error:
Line 4: void Application_Start(object sender, EventArgs e)
Line 5: {
Line 6: WebSocks.WebSockServer.Start();
Line 7: }
我意识到这是因为服务器无法从定义了名称空间和对象的文件/counter/Web/App_code/WebockServer.cs中找到代码。
如何告诉服务器在哪里可以找到此代码?我猜这是一件简单的事情,但我对ASP.NET还不够了解(阅读:完全(,无法弄清楚:(
如有任何帮助,我们将不胜感激!
我终于发现Web文件夹中的所有内容都必须放在webroot中。