-3

I'm new to SignalR. I just want to create a simple grid using signalR.

I want show real time in grid.

Abc
  • 1
  • 1
  • 1
  • Please explain what you have tried so far. And make sure you read [How to ask...](https://stackoverflow.com/help/how-to-ask) to increase your chances at getting some help. – Juliën May 20 '17 at 10:50
  • SignalR isn't for creating grids. It's a bidirectional communications protocol. – mason May 20 '17 at 13:10
  • for example i want to show price of some items in a grid. the price changes frequently so the user should get updated price without refreshing – Abc May 21 '17 at 09:43
  • How to do it? Please – Abc May 21 '17 at 13:28

1 Answers1

0

Well start with https://learn.microsoft.com/en-us/aspnet/signalr/overview/getting-started/tutorial-server-broadcast-with-signalr

What you are looking for is similar to the stock ticker example. Then if you want it to update when your database changes you can easily good examples of that....

Mike M
  • 488
  • 5
  • 19