SignalR without MVC?

I just went through the MVC4 + SignalR tutorials, but my existing site is in the structure of the web pages. Can we use ASP.NET SignalR with ASP.NET WebPages (WebMatrix) instead of MVC?

+4
source share
1 answer

Yes, you can use SignalR with ASP.NET web pages (WebMatrix). SignalR is not dependent on ASP.NET MVC, but it relies on using jQuery.

Read SignalR and knockout on ASP.NET web pages using WebMatrix to walk through using SignalR with ASP.NET web pages (WebMatrix).

+4
source

Source: https://habr.com/ru/post/1502869/


All Articles