Tagged Questions

7
votes
9answers
24k views

Formatting DataBinder.Eval data

How can I format data coming from a DataBinder.Eval statement in an ASPX page? For example, I want to display the published date of the news items in a particular format in the homepage. I'm using ...
2
votes
4answers
155 views

C# - Looping trough a Repeater control and accessing values added via DataBinder.Eval()

I have a Repeater control that adds rows to a table. The data inside each cell comes from a Datatable that is bound to the repeater. Simplified Example: <asp:Repeater ID="Repeater1" ...
0
votes
1answer
73 views

DataBinder.Eval error in asp.net

I have created a class doing some jobs like GridView inherit from System.Web.UI.WebControls.WebControl. public class IHGridView : System.Web.UI.WebControls.WebControl { // inside here, actually ...
0
votes
3answers
2k views

Using DataBinder.Eval() in style attribute of an asp.net control

I've a asp.net linkbutton inside asp.net repeater control which renders multiple link buttons. I want to set the style of each and every linkbutton dynamically. I'm trying ...