克隆 Intranet 站点,但用自己的内容替换内容窗格
我在一家相当大的公司内的一家小公司工作,我实际上无法控制我们的内部网。我已经构建了一个小站点/页面,我希望它的样式与 Intranet 页面完全相同。
我知道我可以下载样式表并开始破解,但我需要链接和菜单是最新的。
我正在使用 asp.net mvc 2 在这里,但我不知道如何进一步发展。想法?
I'm working at a small company within a rather large company, where I don't really have control over our intranet. I have built a little site/page, and I want it to style exactly like the intranet pages.
I know I can download the stylesheets and start hacking away, but I need the links and the menu's to be up to date.
I'm working with asp.net mvc 2 here, but I've no idea how to go further from here. Thoughts?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您将需要复制 CSS 等。
关于菜单 - 您将需要执行以下
操作 WebRequest 用于获取新数据,使用 Html Agility Pack 来解析页面,并且使用 XPath 获取相关数据 - 我建议使用 缓存 为此
You will need to copy the CSS etc.
About the menu - you will need to do the fallowing
use WebRequest for getting the new data, Use Html Agility Pack for parsing the page, And use XPath for getting the relevant data - I will recommend using caching for this