Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

If pc1 and pc2 on the same page. Pc1 change the status on a field, how do I get pc2's aspx page to get the update without a refresh?

share|improve this question
Ajax, Websockets, cmon.. – Fabrício Matté Nov 2 '12 at 19:06
5  
You could use ajax for this. However, your question is to vague to provide a good answer. You'll need to post a more specific question after you have tried to implement something. – Jon B Nov 2 '12 at 19:07
Use Websockets to push updates to the client, or use AJAX to poll for updates from the client. – David Nov 2 '12 at 19:07

closed as not a real question by Jon B, kekekela, Fabrício Matté, Andrew Barber, LittleBobbyTables Nov 2 '12 at 19:59

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

I would suggest checking out SignalR.

share|improve this answer

The short answer is that you need more power.

You can use the ajax push engine. It's nice because both the server side and client side code are written in JavaScript.

Flash can do that kind of stuff, if you like Flash. But I'm not sure how.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.