Link to home
Start Free TrialLog in
Avatar of fxcentral
fxcentral

asked on

Asp.Net Stock Market

I want to update Stock Market every second in Asp.Net Grid without using Javascript or Jquery or Ajax or any third part Application.
Avatar of teebon
teebon
Flag of Singapore image

I assume you are calling WCF service from code behind.
Then you may use a meta tag to refresh your page:

<meta http-equiv="refresh" content="1" />

Open in new window


Alternatively, you may use Silverlight.
http://www.microsoft.com/silverlight/
Avatar of fxcentral
fxcentral

ASKER

I need to get data from sockets via Tcp Connections and I need to update Asynchronously
In that case, you may put your Tcp connections in the ASP.NET code behind and then use the meta tag to refresh your page.
The Socket might give data every Milliseconds so I want to update UI in milliseconds without any data loss
Javascript will be required. What is your concern of not using Javascript?
ok.....how to do in javascript?
I have also used third party application using SignalR but while opening multiple browser it gets crashed
ASKER CERTIFIED SOLUTION
Avatar of teebon
teebon
Flag of Singapore image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial