如何在另一个用户控件中使用 ASP.NET 用户控件?
我有一个用户控件 (gallery.ascx
),我想在图库控件中使用 photo.ascx
控件。 我已在 gallery.ascx
的顶部添加了此寄存器,但它仍然找不到照片:
<%@ Register TagPrefix="ssctrl" TagName="photo" Src="controls/photo.ascx" %>
有什么想法吗?
I have a user control (gallery.ascx
) and I want to use the photo.ascx
control in the gallery control. I've added this register at the top of gallery.ascx
, but it still can't find photo:
<%@ Register TagPrefix="ssctrl" TagName="photo" Src="controls/photo.ascx" %>
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果有人想知道,注册是正确的,我的照片用户控制标签只是没有正确形成。 我确实将其设置为:
并且 Key 属性需要使用单引号而不是双引号,因为它使用 Eval 表达式:
之后,它起作用了。
In case anyone is wondering, the Register is correct, my photo user control tag was just not formed properly. I did have it as:
and the Key property needed to use single quotes instead of double quotes because it was using an Eval expression:
After that, it worked.