Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save contensis/e51ef6c5cafef1741156 to your computer and use it in GitHub Desktop.
Save contensis/e51ef6c5cafef1741156 to your computer and use it in GitHub Desktop.
using System.Net;
using System.Net.Http;
using System.Net.Http.Formatting;
using System.Web.Http;
using Contensis.Framework.Web.Controllers;
namespace Zengenti
{
[RoutePrefix("api/MyApiController")]
public class MyController : ContensisApiController
{
[HttpPost]
[Route("MyAction")]
public HttpResponseMessage SuccessDisplayMessage(FormDataCollection data)
{
return CreateResponse(string.Format("<p>Hello, {0}</p>", data["Firstname"]));
}
}
}
@beedyg
Copy link

beedyg commented Jul 23, 2015

Hi guys, could you change the quotes? At the moment pasting this in will bring the site down (since it goes in App_Code)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment