Using .NET’s Register Script methods with jQuery’s $(document).ready() 24 July 2009 NovoGeek (2) In ASP.NET web apps, most of the times we would need to call JavaScript functions in page_load event of code behind, for various valid reasons. In such scenarios, we simply use .NET’s Register Script methods for emitting JavaScript code, which is absolutely fine. If you are using jQuery, ... [More]
Filtering .NET 3.5 returned JSON with jQuery 16 July 2009 NovoGeek (0) In .NET 3.5, when a Web service class is decorated with “ScriptService” attribute, the web service returns data in JSON format [MSDN]. I have demonstrated this with a simple example in the article, Passing JSON objects in .NET 3.5. Let us consider that our “person” ... [More]