使用 ASP.NET 显示 Webalizer 统计信息

发布于 2024-11-14 04:25:51 字数 258 浏览 2 评论 0原文

我有一个网站 (www.teahua.com),它是使用 ASP.NET (2.0) 和 C# 编写的,在使用 mono 的 Debian 服务器上运行。托管提供商使用 webalizer 在网站上提供统计数据。

可以使用 www.teahua.com/stats 访问统计数据(它运行 index.html 页面)。

我对 ASP.NET 领域还比较陌生。我的问题是如何使用 ASP.NET 显示/包含统计页面以及该页面中的所有其他链接。

感谢您的帮助

I have a website (www.teahua.com) that is written using ASP.NET (2.0) and C# running on a Debian server using mono. The hosting provider provides statistic on the website using webalizer.

The statistics is accessed uing www.teahua.com/stats (and it runs the index.html page).

I am relatively new to the ASP.NET arena. My question is how can I display / include the stats page, and all other links from that page, using ASP.NET.

Thank you for your help

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

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

发布评论

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

评论(1

厌味 2024-11-21 04:25:51

选项 1 - iFrame

https://developer.mozilla.org/ en/HTML/Element/iframe

选项 2 - HTTPWebRequest - 下载网页、处理它并将其提供给您的用户。

http://wiki.asp.net/page.aspx/285/httpwebrequest/

下载文件后,您可以在 div 或文字中将其提供给用户。根据您的选择,您可能想要删除关键标签,或者可能是下载文件的整个标头部分。

Option 1 - iFrame

https://developer.mozilla.org/en/HTML/Element/iframe

Option 2 - HTTPWebRequest - Download the webpage, process it, and provide it to your users.

http://wiki.asp.net/page.aspx/285/httpwebrequest/

After downloading the file, you can provide it to your users within a div or literal. Depending on your choice, you may want to strip out key tags, or perhaps the entire header portion of the downloaded file.

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