Skip to content

Instantly share code, notes, and snippets.

@kazuk
Created April 14, 2012 00:29
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 kazuk/2381175 to your computer and use it in GitHub Desktop.
Save kazuk/2381175 to your computer and use it in GitHub Desktop.
create new gist を試してみるよ
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace SampleAppBase.Controllers
{
public class HomeController : Controller
{
public ActionResult Index()
{
ViewBag.Message = "ASP.NET MVC へようこそ";
return View();
}
public ActionResult About()
{
return View();
}
}
}
@kazuk
Copy link
Author

kazuk commented Apr 14, 2012

わーい、普通に動いたー

@masaru-b-cl
Copy link

どもですー

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