使用 ASP.NET 显示 Webalizer 统计信息
我有一个网站 (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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
选项 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.