name-attribute

In WPF, what are the differences between the x:Name and Name attributes?

The title says it all. Sometimes it seems that the Name and x:Name attributes are interchangeable. So, what are the definitive differences between them, and when is it preferable to use one over the other? Are there any performance or memory implications to using them the wrong way? EDIT Responses so far suggest that using x:Name al...

Markup validation error when using CFForm

Does anyone know of a solution to the following markup validation error? I'm not sure if this is an issue in ColdFusion or my own code, but the output of the following snippet does not validate correctly on W3C markup validation service: Code <cfform class="SearchForm" id="SearchForm" action=""> <fieldset> ...

Using jQuery validator plugin, how to use dynamically created name attributes to assign rules?

Here's the problem: The ecommerce system we uses generates a line item for each product purchased. It gives line item's quantity input the name attribute "qty0", "qty1", "qty2", and so on as the line items go down the page. I need to check these qtyX inputs for validity, but I don't know how to pass either the name attribute as a rela...