外部柜台如何获取独立访客?
外部计数器如何通过图像跟踪唯一访客
如果可能的话,我也想获得推荐人。
类似于 img="http://www.somecounterdomain.com/count.php?page=83599"
我正在使用 ASP.NET,c#
我知道用户可以“作弊”,但希望将这种可能性降到最低。
额外的困难是我应该访问外部服务器并且无法在那里实现 C# 代码。
我所能做的只是实现一个反图像或类似的东西。 我尝试使用生成的图像。 感谢您的回答。
how do external counter track unique visitors via image
i'd also like to get Referrer if possible.
something like img="http://www.somecounterdomain.com/count.php?page=83599"
i'm using ASP.NET, c#
i'm aware of a user can "cheat" but would like to make that posibility minimal.
additional difficulty is that i should trach external server and can't implement c# code there.
what i can is only imlement a counter imag or smth like that.
i try to use generated image.
thx for answers.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
基本上您需要做的是以下事情。
1- 创建 .ashx 或 .aspx。假设您使用 .aspx 并将其称为 StatServer.aspx,Page_Load 函数将读取查询字符串并将数据写入数据库,您将在步骤 2 中看到查询字符串。如果需要,您可以返回一个图像,该图像可以是呈现。一些粗略的代码看起来像这样。
<代码>
Basically what you need to do is the following.
1- Create either a .ashx or .aspx. Assuming you go with .aspx and call it StatServer.aspx, the Page_Load function will read the query string and write the data to a database, you will see the querystring in step 2. If you want, you can return a image which can be rendered. Some rough code will look something like this.
获取“推荐人”很容易,并且为了计算唯一访问者,您需要设置/检查 cookie。
Getting the 'referer' is easy and for counting unique visitors you'll need to set/check for cookies.