I am trying to build an ASP.NET custom server control
. I am using .NET framework 4.0. All I want is to be notified in my javascript function, about the values being changed on the server. Or, even better, if I can get my javascript
model in sync with the server side model. i.e. whenever a property of my server side model changes, the corresponding property of my javascript
model also gets updated.
I have been searching through MSDN for something like this, but no clear explanation on this topic.
Can anybody please tell me how to achieve this? Pointing to some relevant articles would be very helpful. And one more thing, I don't want to use update panel, as it will go through executing Page_Load method again and again.
Please help.