使用 SharePoint 中 pageviewerwebpart 内的程序获取页面 URL

发布于 2024-08-26 21:35:00 字数 134 浏览 5 评论 0原文

我有一个用 c# .net 编写的简单点击计数器。我使用 pageviewerwebpart 将该计数器放置在许多页面上。我想要做的是,不仅计算点击次数,还计算哪个页面触发了点击计数器。那么如何使用点击计数器检索页面 URL 呢?

谢谢。

I have a simple hit counter written in c# .net. I placed that counter to many pages using the pageviewerwebpart. What I want to do is, not only counting the hits, but also which page triggered the hit counter. So how can I retrieve the page URL with my hit counter ?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

递刀给你 2024-09-02 21:35:00

查看 Request.ServerVariables

您可能正在寻找 Request.ServerVariables["URL"]

Have a look at Request.ServerVariables.

You are probably after Request.ServerVariables["URL"].

柏拉图鍀咏恒 2024-09-02 21:35:00

获取链接到当前页面的页面的 url 使用:

var referrer = Request.Urlreferrer;

如果您的应用程序位于 IFRAME 中,您可以使用它进行检查,

parent.location.href;

但由于跨脚本安全问题,仅当在同一域/站点 url 上运行时才有效。

The get the url of the page that linked to the current page use:

var referrer = Request.Urlreferrer;

if your app is in say an IFRAME you can check it using

parent.location.href;

this works only when running on the same domain / site url though, because of cross scripting security issues.

原来是傀儡 2024-09-02 21:35:00

这与我在 url 方面遇到的问题相同。您可以在 page_load 子项中使用 Request.UrlReferrer.ToString(),但它仅在页面首次加载时有效。如果您进行刷新,则会获取 pageviewerwebpart 中包含的页面的 url。我使用cookies实现了一个解决方法。这是我在 Sharepoint Stack Exchange 上的帖子: https://sharepoint.stackexchange.com/questions/33617/how-to-get-the-url-name-of-a-subsite-from-a-webpart

啊,我也发现了另一个使用查询参数的解决方案,我在自己的答案中提到过。

This is the same problem I have had with the urls. You can use Request.UrlReferrer.ToString() in a page_load sub, but it only works when the page is first loaded. If you do a refresh then it gets the url of the page contained in the pageviewerwebpart instead. I implemented a workaround using cookies. Here is my post over at Sharepoint Stack Exchange: https://sharepoint.stackexchange.com/questions/33617/how-to-get-the-url-name-of-a-subsite-from-a-webpart

Ah, I also found another solution using query parameters, which I mention in my own answer.

柏拉图鍀咏恒 2024-09-02 21:35:00

尝试 Request.ServerVariables["HTTP_REFERER"]。经过一番研究,我从 Request.ServerVariables["HTTP_REFERER"] 获得了 url。

问候,
阿贾伊·拉古万什

Try Request.ServerVariables["HTTP_REFERER"]. After bit of research I got the url from Request.ServerVariables["HTTP_REFERER"].

Regards,
Ajay Raghuwanshi

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文