ASP.NET Include 禁用代码隐藏
我发现
<!-- include file="MyPage.aspx" -->
在 ASP 中使用该命令时,我无法使用 MyPage.aspx 中的代码隐藏。
问题是,当我尝试包含 MyPage.aspx 时,出现错误,因为我们有两个页面指令。如果删除页面指令,我可以很好地包含 MyPage.aspx,但无法访问隐藏代码,因为页面指令中的“CodeBehind”参数不再存在。
因此,据我所知,我们有一个“第 22 条军规”。有谁知道这个问题的解决方法?或者只是我缺少一些东西?
谢谢, -Onion-Knight
我不确定这是否会改变任何内容,但我正在使用包含 MyPage.aspx 的页面的母版页。
I've found that when using the
<!-- include file="MyPage.aspx" -->
command in ASP, I'm not able to use the code-behind in MyPage.aspx.
The issue is that when I try to include MyPage.aspx, there is an error because we have two Page Directives. If I remove the Page Directive, I can include MyPage.aspx just fine, but cannot access the code-behind, because the "CodeBehind" parameter in the Page Directive is no longer there.
So, as far as I can tell, we have a Catch-22. Does anyone know of a work-around for this? Or is there just something I'm missing?
Thanks,
-Onion-Knight
I'm not sure if this changes anything, but I am using a Master Page with the page that includes MyPage.aspx.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么不使用用户控件 (*.ascx) 而不是包含 aspx 页面?
查看 MSDN 中的概述,其中展示了如何创建和用户“用户控件”。
Why don't you use a user control (*.ascx) instead of including an aspx page?
Have a look at this overview in MSDN which shows how to create and user "user controls".