在 ASP.NET MVC Helpers 中构建字符串
在 html Helpers 中构建字符串时最好的方法是什么?当附加到 MvcHtmlString.Create(stringbuilder) 时,Stringbuilders 是否足够好?还有其他更好的方法吗?
What is the best approach when building strings in html Helpers? Are Stringbuilders good enough when attached to MvcHtmlString.Create(stringbuilder)? Is there another approach which is better?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
StringBuilder
很好,但在帮助程序中构建 HTML 内容时,您也可以使用System.Web.Mvc.TagBuilder
。StringBuilder
is fine but you could also useSystem.Web.Mvc.TagBuilder
when building HTML content in your helper.