using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using QMAPP.Common.Web.Controllers; namespace QMAPP.MESReport.Web.Controllers { /// /// 登录 /// public class LoginController : QController { // // GET: /Login/ public ActionResult Login() { string sessionid = HttpContext.Session.SessionID; return View(); } } }