Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
5answers
2k views

Why use TagBuilder instead of StringBuilder?

what's the difference in using tag builder and string builder to create a table in a htmlhelper class, or using the HtmlTable? aren't they generating the same thing??
4
votes
2answers
155 views

Can you control the order in which the TagBuilder class renders attribues?

I know this is kind of obsessive, but is there a way to control the order that the TagBuilder class renders the attributes of an HTML tag when you call ToString()? i.e. so that var tb = new ...
2
votes
1answer
40 views

ASP.NET MVC - Unit testing HTML that is generated by TagBuilders

I have code that generates html via TagBuilders How could I test if the right HTML is generated? My TagBuilder is not as simple as just one tag, it also contains other tags. So I have a function that ...
2
votes
1answer
137 views

internal ToMVCHmlString in TagBuilder

I am looking to write a few helpers in my own assembly modeled after the helpers in System.web.mvc. My problem is that I cannot use the call to Tagbuilder.ToMvcHtlString since it is internal. So if I ...
2
votes
1answer
872 views

ASP.NET MVC TagBuilder.SetInnerText() not setting the text correctly

So I am creating a HtmlHelper extension method and I have run into a problem when using TagBuilder.SetInnerText(). The helper outputs an option tag. Here is the source of the helper: public static ...
1
vote
1answer
130 views

Disable HTML encoding of attribute values in TagBuilder

I'm using MVC and I've created a HtmlHelper extension function ImageLink. This function uses two TagBuilder objects to build an HTML image link (like ). It works fine, but now I have a page on which ...
1
vote
1answer
276 views

TagBuilder.MergeAttributes does not work

I am creating my own helper in MVC. But the custom attributes are not added in the HTML: Helper public static MvcHtmlString MenuItem(this HtmlHelper helper, string linkText, string actionName, ...
1
vote
2answers
536 views

What is the difference, if any, between string.Format and TagBuilder in ASP.NET MVC?

I have a Html Helper file for my ASP.NET MVC application. The majority of them simply return a formatted string. Here is an example of one of my formatted string helpers: public static string ...
0
votes
1answer
138 views

How would you refactor this Asp.net MVC 2 Html Helper?

Quick question. How would you refactor this Asp.net MVC 2 HtmlHelper? Specifically would it make sense to use the TagBuilder class in this scenario? public static MvcHtmlString ...