using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; namespace DSWebMobile.Controllers { [HandleError] public class HomeController : Controller { string u = ""; string w = ""; public ActionResult Index() { ViewData["Message"] = "欢迎使用 ASP.NET MVC!"; //string aa = Session["USERID"].ToString(); return View(); } public ActionResult About(string id,string name) { string strName = name; int length = id.Length; return View(); } public ActionResult Initialise() { u = Request.QueryString["u"].ToString(); w = Request.QueryString["w"].ToString(); //DSWeb.Areas.MvcShipping. return View(); } } }