什么是 JSP 标签?
我有 .NET 背景,正在尝试学习 Java。我不断看到对标记和标记处理程序等的引用。
是否有等效的 .NET 构造?
I'm coming from a .NET background and trying to learn Java. I keep seeing references to tags and tag handlers, etc.
Is there an equivalent .NET construct?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的。
<% ... %>
是您从 jsp 标记中获得的内容。标记处理程序与您可以添加到许多 HTML 标记中的RUNAT="SERVER"
属性类似,但它们更进一步,允许您创建自定义标记来满足您的需求。例如,您可以创建一个名为DATETIMEHERE
的标签,遇到该标签时只需输出日期/时间。例如,
在 ASP.NET MVC 中,您可以创建自定义 ViewEngine 并非常轻松地执行与标记处理程序一样强大的操作。
Yes.
<% ... %>
is what you get for the jsp tag. Tag Handlers are similar to theRUNAT="SERVER"
attribute you can add to many HTML tags, except they go much further and allow you to create custom tags to fit your needs. For example you could create a tag calledDATETIMEHERE
that when encountered simply output the date/time.E.g.
In ASP.NET MVC you could create a custom ViewEngine and do something as robust as Tag Handlers very easily.