如何在服务器端 asp.net 中跟踪 Google Analytics 事件?
有没有办法在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,您可以进行服务器端谷歌分析,请参阅此项目,例如:
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.
您还可以通过客户端在 NEXT 请求上将事件发送到 google。
You could also send the event to google via the client on the NEXT request.