By tag: Json
0
kicks
jQuery
This post looks into client side grid implentation using jTemplate to achieve high performance grid. It also talks about how to add additional features like paging, sorting and filtering to this client side grid. Its a highly detailed post.
0
kicks
Writing JSON to a file using Json.NET
A couple of simple C# examples showing how to write JSON to a file using Json.NET.
0
kicks
Building JSON,XML REST API using WCF services
Quick tutorial how to create and configure WCF REST API service
0
kicks
Using JsonResult in ASP.NET MVC AJAX
In ASP.NET MVC you can write action methods that return a variety of types to be used in your views to obtain data for AJAX interactions. Most common types are string and ActionResult, but there is also an option called JsonResult which returns its values as JSON serialized data. The returned data c...
0
kicks
Json [Date -> String -> Date]
For them who have problems with Date on client. Conversion both sides.
0
kicks
Native JSON in Internet Explorer 8
Internet Explorer 8, as of Beta 2, offers native JSON parsing (JSON.parse) and serialization (JSON.stringify) while maintaining compliance with JSON support as described in, “ECMAScript 3.1 Language Specification - Draft.” This will enable Ajax applications to run faster and parse untrusted payloads...
0
kicks
ASP.NET Ajax, JQuery
A little while back I came across a great post on how to use JQuery to do more efficient client side paging by Dave Ward. The sample shows you how to use JQuery to do Ajax callbacks for client side paging using a grid template. After downloading the demo and parsing through it all, I found a lot of ...
0
kicks
jQuery and the ASP.NET MVC Framework
With WebForms, integrating with Ajax libraries other than ASP.NET AJAX was slightly painful. With the new ASP.NET MVC Framework, however, you can use jQuery without these additional headaches.
0
kicks
Easily build powerful client-side AJAX paging, using jQuery
An in-depth example of using jQuery to build client-side paging, including progress indicators, to page into any server side data source that can be JSON serialized by ASP.NET AJAX.
0
kicks
JSON Serializers in .NET - not there yet
.NET Framework 3.5 provides a couple of choices for JSON Serialization and Deserialization. Find out how you can use them and also some of the problems that both of these tools impose.
0
kicks
Reduce ASP.NET Page size and complexity using JQuery-Part 2
This is part 2 of my series for ASP.NET AJAX and JQuery comparison. You can read part 1 here. In my last 2 articles (Dynamically create ASP.NET user control using ASP.NET Ajax and Web Service and Dynamically create ASP.NET user control using JQuery and JSON enabled Ajax Web Service), I explained how...
0
kicks
Dynamically create ASP.NET UserControl using JQuery & Ajax Web Service
Few thing you need to consider when you are accesing ASP.NET webservice through JQuery.
* Request verb Type
* Content- length with IIS6+
* Default contentType
* JSON object formatting
* Maximum length exceed exception
I am explaining these issues and workaround to make ...