|
|
Stories recently tagged with 'JSON'
|
|
submitted by
atifaziz
1 month, 17 days ago
blogs.msdn.com — 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 in a safe manner without resorting to (regex-verified) eval! read more...
add a comment
|
category: IE | Views: 9
|
|
tags:
JSON, JavaScript, AJAX | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
kayos
1 month, 30 days ago
blog.reamped.net — 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 things I really liked and even came across a little gotchya with the way ASP.NET serializes dates in JSON. read more...
add a comment
|
category: AJAX | Views: 24
|
|
tags:
ASP.NET, JSON, AJAX, jQuery | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 3 months, 3 days ago, submitted by
gt1329a
3 months, 3 days ago
encosia.com — 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. read more...
add a comment
|
category: AJAX | Views: 402
|
|
tags:
jQuery, JSON, Encosia, AJAX, Paging | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 3 months, 3 days ago, submitted by
gt1329a
3 months, 3 days ago
encosia.com — 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. read more...
add a comment
|
category: AJAX | Views: 402
|
|
tags:
jQuery, JSON, AJAX, Encosia, Paging | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 3 months, 2 days ago, submitted by
shaharyr
3 months, 4 days ago
dev102.com — 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. read more...
add a comment
|
category: ASP.NET | Views: 278
|
|
tags:
lanciaux, JSON, Color, ASP.NET, ASPNETMVC | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 3 months, 17 days ago, submitted by
Sanjeevana
3 months, 17 days ago
weblogs.asp.net — 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 to access JSON data from ASP.NET AJAX script service using ASP.NET AJAX client side framework and JQuery. In this post I will compare response/ request for these two implementations. read more...
add a comment
|
category: ASP.NET | Views: 295
|
|
tags:
WebServices, .Net, XML, Tips, JSON | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 3 months, 17 days ago, submitted by
rstrahl
3 months, 18 days ago
west-wind.com — .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. read more...
add a comment
|
category: ASP.NET | Views: 241
|
|
tags:
JSON, ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 3 months, 25 days ago, submitted by
Sanjeevana
3 months, 25 days ago
weblogs.asp.net — 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 JQuery work fine with ASP.NET Ajax enabled web service. read more...
add a comment
|
category: ASP.NET | Views: 237
|
|
tags:
C#, WebServices, VB.NET, JavaScript, .Net | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
NavaidAkhtar
4 months, 15 days ago
weblogs.asp.net — JSON (Java Script Object Notation), is a light weight, easily understandable to read and write string. It is also easly parseable by machine.
It is introduced on two structues
A collection (key/value pair)
And ordered list of values.
read more...
add a comment
|
category: ASP.NET | Views: 58
|
|
tags:
JSON, ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
52coding
4 months, 16 days ago
52coding.com — When we in the definition of AJAX services, for a variety of requests, should be what kind of data format to respond to what ?Of course, if the request is Markup section of the code, HTML is the most appropriate, the client requests to the data, it will be directly inserted into the front page. read more...
add a comment
|
category: XML | Views: 6
|
|
tags:
JSON, XML | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 6 months, 11 days ago, submitted by
fintz69
6 months, 13 days ago
javicrespotech.blogspot.com — In this post Javi discusses the use of JSON services int the context of a client centric development approach, and then he moves on from the theoretical point of view and explains with some samples how to to implement JSON services using the different mechanisms that ASP.NET provides: Page Methods, Web Services and WCF Services. read more...
add a comment
|
category: AJAX | Views: 39
|
|
tags:
WCF, JSON, WebServices, AJAX, ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 6 months, 19 days ago, submitted by
JamesNK
6 months, 19 days ago
james.newtonking.com — The final version of Json.NET 2.0. Includes all the new features introduced during the betas such as LINQ to JSON and JsonSerializer improvements in addition to all new API documentation. read more...
add a comment
|
category: C# | Views: 33
|
|
tags:
JSON, C# | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 7 months, 27 days ago, submitted by
gt1329a
7 months, 27 days ago
encosia.com — An overview of consuming ASP.NET web services that are JSON serialized by the ASP.NET AJAX extensions, including a specific example of using jQuery to do so. read more...
add a comment
|
category: AJAX | Views: 80
|
|
tags:
jQuery, JSON, Encosia, AJAX, ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|

Sponsored Link: www.carlist.ie
Ads via The Lounge
|