我有一个登录其他网站的中心页面。
我想获得一个绝对的返回网址。
例如,目前我收到了/Message/ShowMsg/514
,我希望获得www.exampele.com/Message/ShowMsg/514
我使用身份验证表单。
答案 0 :(得分:0)
使用Url.Action
Url.Action("showMsg", "Message", new {id = 514},HttpContext.Current.Request.Url.Scheme);
HttpContext.Current.Request.Url.Scheme
- 它将返回www.example.com