更新实时 ASP 网站(将使用 XHTML 页面覆盖现有 ASP 页面)
如果我覆盖一个活动的 ASP 站点,但将所有现有的 .asp 页面替换为 .xhtml 页面,我是否会遇到可能出现的任何问题。目前,表格已从网站中删除,因此其实际上是静态的,但将来会进行修改;即:视频、表格等。
目前,所有生产和测试都在演示服务器上进行,我将在本周末上线该网站。
If I'm overriding an active ASP site but will be replacing all existing .asp pages with .xhtml pages, will I have any issues that may arise. Forms have been removed from the site at this time so its virtually static but will be making modifications in the future; ie: video, forms, etc.
At this time all production and testing have been on a demo server and I will taking the site live this weekend.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只要你做好你的工作,就不应该有任何问题。
这项工作的难度在很大程度上取决于旧 ASP 站点的复杂性。
你删除了所有表格,很好。带有数据库查找的链接怎么样:
book.asp?isbn=6546465445,如何使用静态页面处理这个问题。您必须为每本可能的书籍创建一个页面并重新映射链接。
您是否将所有链接从 *.asp 更改为 *.xhtml,或者只是将 *.asp 重新映射到服务器上的静态处理程序?
过去,我必须采用一个非常动态的 ASP 站点,并使其在没有服务器的情况下通过 CD-ROM 运行。
一个好的链接检查工具对于测试新站点非常有帮助。
There shouldn't any problems as long as you did you job right.
How hard that job was depends a lot one the complexity of the old ASP site.
You removed all forms, fine. What about links with database look ups like:
book.asp?isbn=6546465445, how do you handle this using static pages. You would have to create a page for each possible book and remap the links.
Did you change all links from *.asp to *.xhtml or just remapped *.asp to a static handler on the server?
In the past I had to take a very dynamic ASP site and make it work from a CD-Rom without a server.
A good link-checking tool to test the new site is very helpful.