Skip to content

Instantly share code, notes, and snippets.

@tegaralaga
Created June 14, 2013 10:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tegaralaga/5781015 to your computer and use it in GitHub Desktop.
Save tegaralaga/5781015 to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using WellThen.Helpers;
namespace WellThen.Controllers
{
public class PercobaanController : Controller
{
//
// GET: /Percobaan/
public ActionResult Index()
{
UtilsHelper.NoCache();
return Content("Hello, World");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment