Category Archives: Javascript

Preview of Microsoft Ajax 4.0 available for download

The Microsoft Ajax team made the fourth preview of the 4.0 version available on CodePlex. The AJAX functionality in ASP.NET 4.0 Preview 4 enables new client data scenarios for page and component developers that allow JSON data from the server … Continue reading

Posted in .Net 3.0 / 3.5, ASP.Net, Javascript | Leave a comment

Control focus with Postback

While working with ASP.Net update panel control, the Tab focus will make some problems. Here is a simple solution for that, you can use the Script Manager class to set focus to a specific control. And if you are using … Continue reading

Posted in .Net, .Net 3.0 / 3.5, ASP.Net, Javascript | Leave a comment

Invoking webservice from Javascript

Microsoft Ajax.net introduced a brand new concept of Page Methods, the problem with Page methods are we can’t use page methods in Master Pages or in Usercontrols. From an OOP presepective, it is not good to write the code every … Continue reading

Posted in .Net, .Net 3.0 / 3.5, ASP.Net, Javascript | Leave a comment

Page methods in ASP.Net

In my previous post I mentioned about accessing server side controls in Java script using ASP.Net Ajax API. That functionality is can be combine with the Page methods feature, for simple Ajax calls without update panel control. You can create … Continue reading

Posted in .Net, .Net 3.0 / 3.5, ASP.Net, Javascript | Leave a comment

Accessing server side controls from Javascript

With ASP.Net Ajax, you can get the server side controls from Javascript using ASP.Net Ajax javascript API. With this feature will be helpful for developers, whom wish to play around Page methods in ASP.Net Ajax. In the above code, MyText … Continue reading

Posted in .Net, .Net 3.0 / 3.5, ASP.Net, Javascript | Leave a comment