Tagged Questions

4
votes
1answer
597 views

Databinding on Custom Control with ITemplate

this is a sample code of my custom server control : [Designer(typeof(ContainerControlDesigner))] [ToolboxData("<{0}:BlocArrondi ...
1
vote
1answer
120 views

ASP.Net - Getting data from RepeaterItem

I'm pretty new to ASP.Net and I'm not sure I'm going about this the right way. I have a Repeater which is bound to a list of "Image" objects. Within each RepeaterItem is a checkbox and I have a button ...
1
vote
0answers
865 views

In DataList ItemdataBound event, how to access by column name instead of by ItemArray index

In the following code, strUsername is always returning as an empty string "" (and so are other columns). However if I use ItemArray and access it by passing the column index, it works fine. How to ...
1
vote
2answers
2k views

ASP.Net repeater item.DataItem is null

Within a webpage, upon loading, I fill a dataset with two table with a relation between those tables and then load the data into a repeater with a nested repeater. This can also occur after the user ...
1
vote
3answers
2k views

ASP.NET / DataItem of DataList is null after Postback

After postback (click on a button) in my ASP.NET form, all the DataItem of my form are null. Why? What should I do to retrieve the content of the DataList even after postback? protected void ...
1
vote
7answers
4k views

Using '<%# Eval(“item”) %>'; Handling Null Value and showing 0 aginst

If dataitem is Null I want to show 0 <asp:Label ID="Label18" Text='<%# Eval("item") %>' runat="server"></asp:Label> how can I accomplish this? Thanks
0
votes
2answers
341 views

How to get the value of a textbox on RadGrid ItemCommand event handler when using a Custom Command?

I'm using RadGrid Form Templates as below; <EditFormSettings EditFormType="Template"> <FormTemplate> <table id="tblEditForm" cellpadding="2" ...
0
votes
1answer
87 views

GridView DataItem not persisting between mode changes

im having some wierd issue with my GridView. Basically, im trying to run a delete command on a table. The gridview has 3 fields bound to it, ItemId, ItemSummary, and ItemDate. Now as i recall, during ...
0
votes
4answers
74 views

Why is DataItem always null in the Page_Load handler?

I've created an ASP.net web page with an ASP Repeater. I bind the ASP Repeater with an IOrderedEnumerable<int> DataSource. I need to access the Repeater DataItems at inside the Page_Load event ...
0
votes
1answer
105 views

Accessing the data or dataItem used to bind a gridview

I have a gridview for which I programmatically set the datasource and databind it to a collection of objects. For each row that is created I then use different methods in the fields to extract the ...
0
votes
1answer
613 views

How to hide items within a datalist if values are NULL (asp.net)(visual basic)

For example in my datalist if Eval("OptionJ").Tostring = Null I would like the function GetVisible to set visibility of the radio button to false like so: <input ...
0
votes
2answers
1k views

DataItem on Repeater.Items is always null

I am setting the DataSource of my repeater to a List (MyProducts is a simple class, consisting of only get/setters). After this and DataBind(), I can see in debugging mode that DataItem of each ...
0
votes
1answer
44 views

How can i set a DataItem to some part of aspx code?

I have some code like this: <div><%# DataBinder.Eval(Container.DataItem, "M_ClassProperty") %></div> <img src='<%# DataBinder.Eval(Container.DataItem, ...
0
votes
3answers
3k views

Asp.Net LinkButton Onclick = method( container.dataitem ), need help with syntax

I have a linkbutton that I want to call a method in the code behind. The method takes a parameter of which I need to stick in a container.dataitem. I know the container.dataitem syntax is correct ...