在 vs2005 的 umbraco 中包含文件处理程序
是否有可能将文件处理程序(.ashx)和aspx页面从Visual Studio 2005包含到umbraco?如果有人知道请回复。
Is there any possibilities to include file handler(.ashx) and aspx pages from visual studio 2005 to umbraco?if any one knows please reply.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于文件处理程序,您不应该有任何问题,只需将 ashx 文件以及任何隐藏代码和 dll 文件从旧项目复制到新项目,您可能还需要在 Web 配置中添加引用。
对于 aspx 文件,您可能会遇到 umbraco 的 URL 重写器问题,具体取决于页面上的内容,您可能必须
- 在 umbraco 中创建新的文档类型、新文档和新模板
- 创建一个新模板并将其与 umbraco 中现有的文档类型一起使用
For the file handler, you shouldn't have any issues, just copy your ashx file and any code behind and dll files from your old project to the new project, you may also have to add a reference in your web config.
for the aspx file, you may run into issues with umbraco's URL rewriter, depending on what is on your page, you may have to
- create a new doc type, a new document and a new template in umbraco
- create a new template and use it with existing doc types in umbraco