using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Web;
namespace Wolf.Project.Infrastructure.Common
{
public class WebUtils
{
///
/// 取得来源URL
///
///
public static string GetSourceUrl() {
return HttpContext.Current.Request.UrlReferrer.Host.ToString();
}
}
}