Tagged Questions
7
votes
9answers
25k 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
1answer
89 views
Error while Embedding Xpath Code and Inline Server Tags
Grid View template field -
<% if ((Convert.ToInt64(XPath("NoOfGuests")) < 0))
{ %>
<asp:ImageButton ID="imgbtnAddResByList"
runat="server"
...
1
vote
2answers
597 views
Why won't DataBinder.Eval work
I am trying to create a simple menu system using repeaters. In the system I want to use a different formatting for class sub items and am trying to use an If that checks the DataBinders results and ...
0
votes
1answer
81 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
2answers
41 views
Using databinder syntax inside a TD on aspx page?
I'm thinking this should be possible or something like it:
<td <%# "style=" DataBinder.Eval(Container.DataItem, "CustName") == "T" ? "border:none" : "border:solid"%>>
But it's not doing ...
0
votes
1answer
509 views
Binding to a List<string> using DataBinder.Eval
I have the following object:
CrossTabDataObject
{
string RowName{get;set;};
int RowId{get;set;}
List<string> CellContents = new List <string>();
//Constructor..... etc.
}
...
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
...