PradeepPonugoti Hi... I have an ASP.Net based web application which has data retrived from Database and displayed in GridView. Few columns need to be updated realtime using LightStreamer. My .NET Adapter based on the code exemples is working. Now i'm trying to subscribe this data to existing ASP.Net Gridview. There is no sample showing how few columns in ASP.Net gridview can be updated with data from LightStreamer adapter. Can you please provide any reference to tutorial or exemple about this? Thanks.
Mone Hi, I'm not familiar with GridView and we don't have any tutorial about it. Anyway, when integrating with a 3rd party grid there are always 2 options: Integrating pieces of our grids inside the html of the original grid as we do in our asp.net demo https://github.com/Weswit/Lightstreamer-example-StockList-client-aspnetajax(see https://github.com/Weswit/Lightstreamer-example-StockList-client-aspnetajax/blob/master/Default.aspx#L315 ) Getting the data directly from the subscription and pushing it client-side in the grid (this is not asp.net but this demo shows the approach I'm talking about: https://github.com/Weswit/Lightstreamer-example-StockList-client-jquery/blob/master/src/index.html#L108 ) HTH