我只想用 asp.net 4.0设置ChatJs 。我阅读了随其文档提供的所有步骤。但我无法安装到我的应用程序。
这是我用 4.0 框架构建的 Web 应用程序。所以这个chatjs可能支持4.5的更大版本。有没有人知道我如何使用带有 sql server 2008 的 asp.net 4.0 安装此聊天应用程序。我成功地将所有基本文件(如 chatjs 和 signalR)设置到我的 Web 应用程序,但在 startup.cs 文件中出现了一些编译时错误。
这是我的 startup.cs 文件代码:
using ChatJs.Admin;
using Microsoft.Owin;
using Owin;
[assembly: OwinStartup(typeof(Startup))]
namespace ChatJs.Admin
{
public partial class Startup
{
public void Configuration(IAppBuilder app)
{
this.ConfigureAuth(app);
app.MapSignalR();
}
}
}
这是我的编译时错误:
Error 1 'ChatJs.Admin.Startup' does not contain a definition for 'ConfigureAuth' and no extension method 'ConfigureAuth' accepting a first argument of type 'ChatJs.Admin.Startup' could be found (are you missing a using directive or an assembly reference?) F:\EasyWeb\App_Code\Startup.cs 11 18 F:\EasyWeb\
Error 2 'Owin.IAppBuilder' does not contain a definition for 'MapSignalR' and no extension method 'MapSignalR' accepting a first argument of type 'Owin.IAppBuilder' could be found (are you missing a using directive or an assembly reference?) F:\EasyWeb\App_Code\Startup.cs 12 17 F:\EasyWeb\
请帮我..