VirtualPathProvider 内容页面问题
我有一个可以与 asp.net 页面配合良好的 VirtualPathProvider。它在运行时编译并运行良好。但是,当我尝试打开包含 asp:Content 标记的页面时,我总是得到:
在包含内容控件的内容页面中只允许直接使用内容控件。
换句话说,当我使用内容页面时,VPP 不起作用。我使用物理母版页和 VPP 提供的母版页进行了测试,在所有测试中,结果都是相同的。
有人有同样的问题吗?我该怎么做才能让 VPP 开始使用内容页面?
I have a VirtualPathProvider that works fine with asp.net pages. It compiles in runtime and run everything well. But, when I try to open a page that contains asp:Content tags, I always getting:
Only Content controls are allowed directly in a content page that contais Content controls.
In other words, when I use content pages, VPP not work. I tested with physical master page and with a VPP provided master page and in all tests, the result are the same.
Anybody have this same issue? What I can do to VPP start to work with content pages?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我继续研究其他事情,终于找到了答案。我的文件存储在数据库中,并且我在保存过程中删除文件的最后一个字节。
此错误不会对主要类型的文件造成问题,但是,我在 DOCX 上传时遇到问题,当我找到原因时,VPP 的 ASPX 内容页面问题就消失了。
Working on other things, I finally found the answer. My files are stored on a database, and I'm dropping the last byte of file on save procedure.
This errors doesn't cause problems on major types of files, but, I have a problem with a DOCX upload and, when I find the cause, the ASPX content pages problem with VPP is gone.