By tag: Json
0
kicks
Google Map Instant search
"Google Map Instant Search" with simple jquery and j-son script ,by using Google's API and by using instant search function keyup(function(e))
0
kicks
MVC JSON Model Binder Attribute
Moving complex data structures from client to server used to be difficult, but not anymore! Just add the JsonBinder attribute to your action parameters, and this Custom ModelBinder will automatically detect the type and parameter name, and deserialize your complex JSON object to the data structure o...
0
kicks
How To Build a Twitter Backup App in DotNet
Since Twitter only allows us to pull your last 3200 Tweets, people are using many online services to archive their Tweets. However, if you are interested to do it yourself in .Net, this tutorial would be a good kickstart.
0
kicks
ASP.NET web services mistake: manual JSON serialization
If you’ve spent much time working with the .NET platform, ASP.NET’s simple, convention-based approach to exposing JSON endpoints seems just about too good to be true. After years of fiddling with manual settings in XML configuration files, it’s understandable to assume that working with JSON in ASP....
0
kicks
ASP.NET MVC 3 released - Zain Shaikh's posterous
For so long, I was waiting for the final release of ASP.NET MVC 3, and now the wait ends and I should properly dive into MVC. ;)
Download and Install ASP.NET MVC 3
Following is the list of some key features and improvments in ASP.NET MVC 3...
0
kicks
Showing Off bit.ly Clicks of Your Posts With jQuery
bit.ly -the most common URL shortener- provides a simple RESTfull API to lookup short URL’s and their clicks count.. bit.ly has recently released version 3 which added simpler, more efficient methods to query multiple URL’s in one request that we are going to apply in this tutorial.
0
kicks
Efficiently Getting Delicious Save Count of Your Posts
Although there are many sites that describe how to get Delicious bookmaking count of some URL. I learned that you can get the save counts of multiple URL's in one request! And since I didn't see that mentioned anywhere -even on Delicious feeds API page- I thought I should do..
0
kicks
javascript interactive with webservice via JSON
This post demonstrates how to call webservice from javascript, this is useful while doing server side validation on a big form and do not want to postback the whole form, as well as retrieve server side data without refresh the page.
0
kicks
Realtime Related Stream Bar: A Collecta-powered jQuery plugin
A jQuery plugin to create a bar of real-time stream of information related to your post powered by Collecta search engine.
0
kicks
Realtime Related Tweets Bar: Another jQuery Plugin
With all the buzz lately about Twitter real-time search. Why don't you add a real-time tweets bar related to your posts from your twitter timeline or from anybody or even limit it by a geocode coordinates!
0
kicks
How to pass Dictionary as a parameter to an ActionResult
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 ...
0
kicks
Update Panels and JSON Alternatives
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 comp...
0
kicks
How I handle JSON dates returned by ASP.NET AJAX
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...
0
kicks
Code behind : A Smarter Related Posts widget for Blogger
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.
0
kicks
Handling JSON data securely, Five JavaScript Tips in Five Days
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.