如何在服务器端 asp.net 中跟踪 Google Analytics 事件?

发布于 2024-08-03 17:50:28 字数 187 浏览 6 评论 0原文

有没有办法在 ASP.NET 中从服务器端跟踪 Google Analytics 事件,要求是在服务器端执行某些功能后,应在单击按钮时跟踪事件。 ? OnClientClick 按钮,我们无法完全满足此要求,因为有时服务器端功能可能会失败,但该事件会在 Google 中跟踪?请在这方面帮助我。

欣赏专家解答。

提前致谢, 拉吉

Is there a way to track Google Analytics Events from Server Side in ASP.NET, the requirement is the the Event should be tracked on button click after some functionalities are executed on Serverside. ? OnClientClick of button, we cannot fulfill this requirement completely as some time serverside functionalities can fail but the event will get tracked in Google? Please help me in this regard.

Appreciate expert answers.

Thanks in Advance,
Raj

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

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

发布评论

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

评论(2

橙幽之幻 2024-08-10 17:50:28

是的,您可以进行服务器端谷歌分析,请参阅此项目,例如:

http://code。 google.com/p/php-ga/

基本上,您只需在服务器端向 http 发出请求://www.google-analytics.com/utm.gif 并使用正确的参数。

Yes, you can do server side google analytics, see this project for example:

http://code.google.com/p/php-ga/

Basically you just make requests server side to http://www.google-analytics.com/utm.gif with the right parameters.

岁吢 2024-08-10 17:50:28

您还可以通过客户端在 NEXT 请求上将事件发送到 google。

  1. 用户单击按钮
  2. 服务器接收请求,执行一些步骤
  3. 步骤通过,服务器决定事件发生
  4. 服务器将 javascript 渲染到响应中以跟踪
  5. 客户端收到响应,执行 javascript

You could also send the event to google via the client on the NEXT request.

  1. User clicks the button
  2. Server receives request, does some steps
  3. Steps pass, server decides the event happend
  4. Server renders javascript into the response to track the even
  5. Client receives the response, executes the javascript
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文