Tagged Questions

0
votes
2answers
82 views

Enabling Databound List Items in DropDownList

I have a drop down list that is being used in an EditItemTemplate of a DetailsView, and it is being populated from a SqlDataSource, and I am binding the selected value as follows: …
0
votes
2answers
95 views

Trying to embed a DataItem within an asp:Image control’s ImageUrl property

I have the following Image control within a repeater. I'm trying to get the username to render in between ~/profilepics/ and .jpg but I get the following rendered output …
1
vote
4answers
579 views

How to call extension methods using Eval in a databound control

I have a simple extension method on the int type so I can do the following: string timeLength = 61.ToTime() // timeLength will be "1:01" This works great in code, but I want to use this extension …