Search Results

1
vote
1answer
213 views

When using the XPath binding expression, can you get back InnerXml rather than InnerText?

I'm binding a control to an XmlDocument and using the "XPath" binding expression to output the data: <div class="Bio"><%# XPath("Biography") %></div> …
0
votes
2answers
40 views

Is there a non-iterating control that allows data-binding syntax to be used?

Let's say I have a single XML node of content in my code-behind. I need to get some data out of the various nodes and onto a Web form. Traditionally, I would create a bunch of Literals on …
0
votes
1answer
30 views

What’s the cleanest way to render the results of a method while data binding?

The best way, of course, is to convert the method to a property. But I can't do that here -- We have an API from someone else, and we've added an extension method to one of the objects. W …
2
votes
1answer
43 views

How do you use extension methods in Web form data-binding expressions?

Has anyone successfully used extension methods in data-binding expressions? Say I have an extension method called "GetName" attached to "MyClass". In the code behind, I have verifie …