DNK has a spanking new server up and running like clockwork. Stability problems are a thing of the past. Our new monitoring service reports 100% uptime since the move!
Stories recently tagged with 'JSON' Subscribe to this feed
1
kicks
submitted by crpietschmann crpietschmann 1 day, 4 hours ago

stackoverflow.com — I'm using jQuery to make an Ajax call using an Http Post in ASP.NET MVC. I would like to be able to pass a Dictionary of values. I finally figured out the best solution is to pass JSON via the Http Post and use a custom ModelBinder to convert the JSON to a Dictionary. One thing I did in my solution is created a JsonDictionary object that inherits from Dictionary so that I can attach the custom ModelBinder to the JsonDictionary type, and it wont cause any conflicts in the future if I use Dictionary as a ActionResult parameter later on for a different purpose than JSON. read more...

Add a comment add a comment | category: | Views: 4
How to pass Dictionary as a parameter to an ActionResult
tags: , , , , | tag it

1
kicks
submitted by rohanwarang 1 month, 3 days ago

csharp-codesamples.com — In most asp.net applications users experience post backs as a result of submit action by the client browsers. These post backs can be quite annoying when just a small part of the page needs to be refreshed. Update panels are designed to perform partial post back eliminating the need for doing a complete post back for updating a part of the page. But are these post backs truly partial? In this article we try to find out if Update panels actually improve performance by doing partial post backs or do they end up degrading it. read more...

Add a comment add a comment | category: | Views: 6
Update Panels and JSON Alternatives
tags: , , , | tag it

23
kicks
published 2 months, 6 days ago, submitted by gt1329a gt1329a 2 months, 6 days ago

encosia.com — The problem of how to handle dates in JSON is one of the more troublesome issues that may arise when directly calling ASP.NET AJAX web services and page methods.. Since the question of how I handle this problem is something asked often in emails and in comments on other posts here, I want to address the topic with its own post. read more...

Add a comment add a comment | category: | Views: 172
How I handle JSON dates returned by ASP.NET AJAX
tags: , , , , | tag it

1
kicks
submitted by MikeMore 2 months, 28 days ago

moretechtips.net — This time I gonna describe the code behind my new widget [A Smarter Related Posts widget for Blogger]. which is based on jQuery manipulation and aggregation of Blogger JSON feeds. read more...

Add a comment add a comment | category: | Views: 9
Code behind : A Smarter Related Posts widget for Blogger
tags: , | tag it

1
kicks
submitted by peachpittv peachpittv 3 months, 23 days ago

peachpit.com — JSON (JavaScript Object Notation) is a lightweight data format commonly used in Ajax requests. Unfortunately, JSON has some inherent security concerns. In this post, I'll discuss the problem with JSON and the fix that makes it safe to use in your Rich Internet Applications. read more...

Add a comment add a comment | category: | Views: 19
Handling JSON data securely, Five JavaScript Tips in Five Days
tags: , , , , | tag it

8
kicks
published 4 months, 2 days ago, submitted by sushantp 4 months, 3 days ago

smallworkarounds.blogspot.com — 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. read more...

Add a comment 2 comments | category: | Views: 427
jQuery
tags: , , , , | tag it

1
kicks
submitted by vladibo 4 months, 15 days ago

blog.bodurov.com — A tool for formatting and coloring raw JSON code read more...

Add a comment add a comment | category: | Views: 18
Formatter and colorer of raw JSON code
tags: , | tag it

18
kicks
published 4 months, 18 days ago, submitted by JamesNK JamesNK 4 months, 19 days ago

james.newtonking.com — A couple of simple C# examples showing how to write JSON to a file using Json.NET. read more...

Add a comment add a comment | category: | Views: 269
Writing JSON to a file using Json.NET
tags: , , | tag it

1
kicks
submitted by vladibo 4 months, 20 days ago

bodurov.com — A tool for formating raw Json code read more...

Add a comment add a comment | category: | Views: 28
Json Formatter
tags: , , | tag it

3
kicks
submitted by gtrifonov 4 months, 29 days ago

gtrifonov.com — Quick tutorial how to create and configure WCF REST API service read more...

Add a comment add a comment | category: | Views: 82
Building JSON,XML REST API using WCF services
tags: , , , , | tag it

18
kicks
published 6 months, 7 days ago, submitted by mosessaur mosessaur 6 months, 8 days ago

nayyeri.net — 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 can be used easily in client-side as appropriate. read more...

Add a comment add a comment | category: | Views: 322
Using JsonResult in ASP.NET MVC AJAX
tags: , , , , | tag it

18
kicks
published 6 months, 7 days ago, submitted by mosessaur mosessaur 6 months, 8 days ago

nayyeri.net — 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 can be used easily in client-side as appropriate. read more...

Add a comment add a comment | category: | Views: 322
Using JsonResult in ASP.NET MVC AJAX
tags: , , , , | tag it

1
kicks
submitted by StackOverflow StackOverflow 6 months, 18 days ago

blog.dynback.com — For them who have problems with Date on client. Conversion both sides. read more...

Add a comment add a comment | category: | Views: 16
Json [Date -> String -> Date]
tags: , , | tag it

3
kicks
submitted by atifaziz atifaziz 8 months, 28 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 add a comment | category: | Views: 22
Native JSON in Internet Explorer 8
tags: , , | tag it

5
kicks
submitted by kayos kayos 9 months, 10 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 add a comment | category: | Views: 46
ASP.NET Ajax, JQuery
tags: , , , | tag it

34
kicks
published 10 months, 14 days ago, submitted by gt1329a gt1329a 10 months, 14 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 add a comment | category: | Views: 463
Easily build powerful client-side AJAX paging, using jQuery
tags: , , , , | tag it

 

Search: