基本文件命名约定
我有一些网页,它们都针对一个主要功能或“工具”执行各种功能。
我不想使用一个庞大的页面来根据“模式”查询参数(?模式=编辑、新、视图等)执行各种功能,而是希望分解页面,这样调试就不会是一场噩梦,因为代码又长又复杂。
所以我要做的是将页面命名如下:
tool.asp
工具编辑.asp
工具-new.asp
tool-view.asp
在基本文件名中使用“-”时是否有任何问题?
还有其他建议吗?
谢谢。
I have a few web pages that all perform various functions for one main piece of functionality or "tool".
Instead of having one massive page where I do the various functions based on a "mode" query parameter (?mode=edit, new, view, etc.) I want to break up the pages so debugging won't be such a nightmare since the code is long and complex.
So what I'm going to do is name the pages as follows:
tool.asp
tool-edit.asp
tool-new.asp
tool-view.asp
Are there any issues when using a "-" in a base file name?
Any other suggestions?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它应该工作得很好。 我唯一的建议是从经典 ASP 转向 ASP.NET。 :)
It should work just fine. My only suggestion is to switch off of classic ASP to ASP.NET. :)