| bill-to |
| given |
family |
Chris |
Dumars |
|
| product |
| sku |
quantity |
description |
price |
BL394D |
4 |
Basketball |
450.0 |
|
| sku |
quantity |
description |
price |
BL4438H |
1 |
Super Hoop |
2392.0 |
|
|
| comments |
Late afternoon is best. Backup contact is Nancy Billsmer @ 338-4338.
|
Trusted voices at the center of the Enterprise and Cloud computing.
I learn best when a trusted friend sits down with me and we pair on a problem. Just two engineers, a laptop and the cloud, solving problems. I'm trying to bring that experience to you every Friday. No editing, no marketing, just solutions. -- Scott Hanselman.
using System.Web;
using System.Web.Mvc;
namespace MvcMovie.Controllers
{
public class HelloWorldController : Controller
{
//
<mark>// GET: /HelloWorld/ </mark>
public string Index()
{
return "This is my <b>default</b> action...";
}
//
// GET: /HelloWorld/Welcome/
public string Welcome()
{
return "This is the Welcome action method...";
}
}
}