Tagged Questions
The late-bound-evaluation tag has no wiki summary.
6
votes
5answers
2k 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 ...
5
votes
6answers
481 views
C# - Disable Dynamic Keyword
Is there any way to disable the use of the "dynamic" keyword in .net 4?
I thought the Code Analysis feature of VS2010 might have a rule to fail the build if the dynamic keyword is used but I ...
0
votes
2answers
456 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
...
0
votes
2answers
364 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:
...