我想在我的XBAP中放置一个Back
按钮,该按钮会将用户带回到他们从中启动XBAP的页面,但是我不确定如何从应用程序中获取HTTP_REFERER。
有人知道它存在吗?
最佳答案
var h = BrowserInteropHelper.HostScript;
if (h != null)
{
string s1 = h.location.href;
if (!s1.StartsWith(sa1))
{
MessageBox.Show("Visit the original website at " + sa1 + " or disable referer control");
}
}
关于c# - 如何在XBAP或ClickOnce应用程序中获取引荐来源?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7065129/