Advertisement
Guest User

Untitled

a guest
Jul 29th, 2016
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using System.Web.Mvc;
  6.  
  7. namespace WebApplication1.Controllers
  8. {
  9. public class HomeController : Controller
  10. {
  11. public ActionResult Index()
  12. {
  13. List<string> items = (List<string>)this.Session["items"] ?? new List<string>();
  14. return View();
  15.  
  16. }
  17. [HttpPost]
  18. [ValidateInput(false)]
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement