You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DS7/DSWebMobile/Controllers/HomeController.cs

39 lines
885 B
C#

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();
}
}
}