Hi, I want to add a dynamic page loading feature to my website, basically I want to load more content on my website page when someone reaches the end or when user presses the load more button. for
eg check this link and scroll to the bottom of the page u will see the content will dynamically load-
https://dribbble.com/.
So can you tell me if I should make dynamic loading pages with signalR or I should use something else for it and if no what should I use and if I can use SignalR will it how much server heavy it is???
as the client requests more data, rather the the sever sending async messages to the client, signal/r is not the correct technology. this is all javascript and ajax calls. google for dozens of samples or plugins.
Member
2 Points
9 Posts
Dynamic web application with ASP.NET core
Apr 13, 2020 03:39 PM|nareshbishtasus|LINK
Hi, I want to add a dynamic page loading feature to my website, basically I want to load more content on my website page when someone reaches the end or when user presses the load more button. for eg check this link and scroll to the bottom of the page u will see the content will dynamically load- https://dribbble.com/. So can you tell me if I should make dynamic loading pages with signalR or I should use something else for it and if no what should I use and if I can use SignalR will it how much server heavy it is???
All-Star
58174 Points
15647 Posts
Re: Dynamic web application with ASP.NET core
Apr 13, 2020 08:01 PM|bruce (sqlwork.com)|LINK
as the client requests more data, rather the the sever sending async messages to the client, signal/r is not the correct technology. this is all javascript and ajax calls. google for dozens of samples or plugins.
Member
2 Points
9 Posts
Re: Dynamic web application with ASP.NET core
Apr 14, 2020 06:36 AM|nareshbishtasus|LINK
Thank you