using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Web; using Bowin.Common; namespace EMIS.Utility { public class HttpHelper { public static string GetMenuNo() { try { var menuNo = HttpContext.Current.Request["MNU"]; if (string.IsNullOrEmpty(menuNo)) { menuNo = HttpContext.Current.Request.UrlReferrer.GetQueryStringByPath("MNU"); } return menuNo; } catch { return "WINFORM"; } } } }