Skip to content

Instantly share code, notes, and snippets.

View nikmd23's full-sized avatar
Waiting for next season...

Nik Molnar nikmd23

Waiting for next season...
View GitHub Profile
@nikmd23
nikmd23 / JsonpResult.cs
Created February 29, 2012 21:06
ASP.NET Action Result for JSONP (JSON + Padding)
using System;
using System.Text;
using System.Web;
using System.Web.Mvc;
using System.Web.Script.Serialization;
namespace NikCodes.ActionResults
{
public class JsonpResult : ActionResult
{