Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
3answers
62 views

InvalidOperationException error

I am creating a method to handle delete button event inside a DataList, and it's doing the functionality properly, however I get this exception: Collection was modified; enumeration operation may not ...
4
votes
6answers
2k views

Datalist in asp.net? ItemCommand event not firing?

in my web application i have a datalist in that i am binding some images. in datalist itemcommand event i write code some code which is not firing, i mean the itemcomand event is not firing. can u ...
4
votes
1answer
2k views

List as DataSource for DataList

All Types implement IEnumerable interface could be used for a DataSource of a DataList. For example List. But what we will write for the data bound expression in ItemTemplate? List<int> myList ...
4
votes
2answers
2k views

Datalist paging with linq

I'm creating a page that uses Linqfor data access and I'm using DataList to display data. How can I use Linq to do data paging ? Please read simple code below : I normally use a PagedDatasource but ...
3
votes
1answer
399 views

Get Value From Dynamic Text Box ASP.NET

I am wondering how I can get the value from an asp.net textbox that is dynamically created inside an asp:datalist. I would like to then insert these values back into the database. Let say we have ...
3
votes
2answers
64 views

How can I place a list inside ASP.NET datalist

I apologize if the answer to this seems obvious but I just cannot figure it out myself. I am building a web application and have come to the stage where I need to get data from the database and ...
3
votes
2answers
704 views

What does <%# DataBinder.Eval(Container.DataItem,“ColumnName”) %> in the Item Template do exactly?

Iam using DataList for the first time. Every thing works fine and I am able to see the data in the screen. I am making use of this code in the item template. <asp:DataList ID="DataList1" ...
3
votes
2answers
515 views

SelectedIndex in Datalist (HTML 5)

You can pick the current "option" of any "select" element: mySelect.options[mySelect.selectedIndex] Can I do the same with datalist ? Something like this: <input id = "input" list = "datalist" ...
3
votes
4answers
5k views

DataList, Conditional statements in <ItemTemplate>?

I am trying to do the following in ASP.NET 3.5. Basically, I am binding a LINQDataSource to a DataList. There is a property called "Deleted" and if it is true, I want to display different markup. ...
2
votes
2answers
77 views

Null Reference Exception of RadioButtonList value

I have a DataList that Displays some Posts with a RadioButtonList inside where it contains 5 choices from 1 to 5, however when i try to get the selected value of theRadioButtonList, it throws Null ...
2
votes
1answer
42 views

How can I make the display and the value different for a html form datalist option?

How can I make the display and the value different for an html form datalist option? For instance, for a select-option field, I can write: <option value="Fake">Sample</option> where ...
2
votes
1answer
356 views

HTML Form: Select-Option vs Datalist-Option

I was wondering what the differences are between Select-Option and Datalist-Option. Is there any situation in which it would be better to use one or the other? An example of each follows: ...
2
votes
1answer
133 views

DataList render rows as columns

Hi i want to force DataList to render rows as columns, where first column is rows description. I can not use repeater cos i want to edit and update data. I started with that but it works compleatly ...
2
votes
2answers
214 views

C# Calling edit command in ItemDataBound

I'm currently struggling to find the code which I need to call in the if statement in order to find the edit event of a data list. I am trying to create a blank drop down item on an existing Drop ...
2
votes
2answers
163 views

Replacing <br> in a textbox

I have a textbox in a Datalist with text that I get from a Database. There are alot of <br> in that text and I want linebreaks instead of <br>, This is what it looks like: ...
2
votes
2answers
241 views

getting databind value in code behind

I'm trying to figure out how to get this value in the code behind. Any way to do this? returned <%# DataBinder.Eval(Container.DataItem, "PagesFound")%> results. Showing results 1 Its part of ...
2
votes
1answer
242 views

How to bind datalist with mulitple datasources

Can I bind a datalist with 2 datasource. The scenario is my data list is bound on the design view which displays a list of products, What I want to acheive is , when a user clicks on a side menu ...
2
votes
2answers
166 views

DataList Question

I have the following databound DataList inside an UpdatePanel which updates whenever a selection is made from a DropDown menu. However, if nothing is retrieved from the db table, I get a blank ...
2
votes
2answers
154 views

How to get date from a dataset in C#?

I have a dataset in which I have three columns. It is a store database in which number of different goods are sold on a particular date. The date can be repeated. For example, for date one item A sold ...
2
votes
1answer
87 views

Add a id/class to the <tr> generated by the asp.net DataList control

My question is dealing with the DataList control. I am trying to add a click event to the rows of the "table" in the OnItemDataBound event. The problem I'm having is I can't get a reference (through ...
2
votes
2answers
144 views

Remove Record from a DataView

I have a DataView which has been populated with a list of files from a database table. I want to iterate through the DataView to see if there are any files there of a particular type, and if so, do ...
2
votes
3answers
1k views

asp.net datalist data binding

I am using an asp.net/c# datalist. <asp:DataList ID="EquipmentList" RepeatColumns="5"..... I have the following line inside the <ItemTemplate> tag: <a href=""><%# {I want to put ...
2
votes
2answers
2k views

Checkbox OnClick/ItemCommand in Repeater or DataList

I need to do some server side logic on a row in my repeater when a CheckBox is clicked inside the repeater control. Anyone know how to go about this? The way I see it you cant fire item command and ...
2
votes
1answer
2k views

JSF rich:dataList rendered per row?

Seems like this should be possible but ...? Using richfaces and JSF I'm iterating over a List using rich:dataList ... all is fine except I'd like the ability to selectively 'render' each iteration, ...
2
votes
3answers
1k views

what is the equivalent of asp:datalist in asp.net-mvc

i am migrating a site over to asp.net from an asp.net site and one of the pages has a datalist as below: <asp:DataList ID="MyDataList" runat="server" BackColor="#EEEEEE" CellPadding="10" ...
2
votes
2answers
4k views

How to display group data seprately using DataList in ASP.NET?

I have a sql table which have the following data, Id City Country --- ------ ------------ 1 Delhi India 2 New York United States 3 Karachi Pakistan 4 Mumbai India 5 ...
2
votes
3answers
796 views

Using event of control under datalist

I have a datalist control which some controls(ex: button) are in it. I want to write some code into click event of button which is in the datalist control. But in the code behind page I can't see the ...
1
vote
3answers
34 views

How to get clientID of Datalist control using jquery

How to get clientID of Datalist control using jquery , I tried using the code below with no succes: $(document).ready(function(){ $('#<%=txtRenewalDate.ClientID %>').datepicker(); ...
1
vote
1answer
18 views

Working with Calender in Data list in asp.net

I am using datalist to display data from the database,I have got three fields whose Data Type is datetime, What I was looking for is to display a calender in the datalist , with date selected(coming ...
1
vote
1answer
65 views

Gridview inside Datalist ASP.NET

I am trying to place an asp gridview inside an asp datalist. For each item in the datalist I would like certain values from another database table to be returned. I have written the following code, ...
1
vote
1answer
64 views

data list in user control gives null reference

I moved a Datalist Control on an aspx page on to a usercontrol and referenced it to the aspx page. In the process, I also moved the source code for the datalist( ItemDataBound and Display methods). I ...
1
vote
1answer
33 views

accessing controls inside a datalist

i am creating a datalist with RadioButtonList inside as a rating scale for each post desplayed in the datalist, however when i rate one post, all the other posts rated the same, can you tell me ...
1
vote
1answer
48 views

problems with nested datalist

I have a nested DataList DataList2 inside DataList1 where I have 2 Buttons inside DataList2 that perform certain commands, and I want to call a procedure that takes as input the datakeyfield of ...
1
vote
1answer
50 views

how to use DataBind datalist inside a datalist

i am having a nested datalist and i want to use databind with the inner datalist on button event, but it's not working, anyone have an idea? DataList2.FindControl("DataList3").DataBind();
1
vote
1answer
57 views

How can I make ASP 'datalist' cells expandable/collapsible?

I have a asp 'Datalist' that gets populated by a 'datatable'. <asp:PlaceHolder ID="ph3" runat="server"> <asp:DataList ID="dlspec" runat="server" GridLines="Vertical" ...
1
vote
1answer
74 views

change text on a hyperlink in a datalist

I'm trying to bind a column from a SQL code that i have written to all hyperlinks in a datalist. This should be really simple but I'm getting the error DataBinding: ...
1
vote
2answers
266 views

Put fixed space between two columns in a datalist

I'm using a datalist to display images. There are two columns per row but the spacing between the columns is too little. Is there a way to place a fixed spacing between the columns? <td class ...
1
vote
2answers
67 views

how to disable the image in datalist1 after move to datalist2?

I have 2 datalist and 2 btn UP and Down, I am trying to move the selected Image from one datalist to other datalist. Datalist1: <asp:DataList ID="dlstImage" runat="server" ...
1
vote
2answers
140 views

Jquery Show/Hide In a .net Datalist

I have a .net Datalist returning news articles what I want to happen is for only the headlines to show and then when you click the headline link the body to show. This is what I have so far HTML ...
1
vote
1answer
115 views

JSF 2.0 , How to vertically allign children of tomahawk datalist

I am using t:datalist with JSF 2.0 to allign images horizontally . But i would like to list the properties of each image below the image vertically.Now the properties are also listed horizontally ...
1
vote
2answers
247 views

Make Datalist items link-able in asp.net

I want to make Datalist with linkable items that I can Navigate to specific url when i click on it it go to c# do respond to new URL My Urls aren't constant how?
1
vote
0answers
148 views

How to make header of a DataList repeat on each column when using RepeatColumn?

I need to display the records in a view on more than one column for better visibility so i switched from using GridView to DataList. How can I make the DataList repeat the header on each column? ...
1
vote
1answer
324 views

ASP.NET Datalist image not displaying

I am using a Datalist to display images in a folder. The code is below: <div> <asp:DataList ID="DataList1" runat="server" RepeatColumns="3"> <HeaderTemplate> ...
1
vote
2answers
58 views

Obtaining the datalists row details

I have the following itemTemplate in my datalist <ItemTemplate> <asp:LinkButton ID="LinkButton1" CommandName="Select" autopostback="True" runat="server">'<%# ...
1
vote
2answers
152 views

can not firing DeleteCommand in Datalist

I want to fire Delete Command in Datalist Control .. but not firing .. Help please .. this is my code : protected void DeleteCommand(object source, DataListCommandEventArgs e) { Label2.Text ...
1
vote
1answer
218 views

ASP.NET 4.0 DataList problem - Facebook Like Button doesn't show up

I have a problem with placing Facebook Like Button inside a DataList control. I want to dynamicly create a Like Button for every DataList element. The problem is that it does show up only in IE. It ...
1
vote
2answers
219 views

ASP.NET panel does not update when last item gets deleted

I am sure that I am missing something really obvious here, but I just can't see it. I have an update panel with a datalist inside it. Each item of the datalist has a delete button with which I issue ...
1
vote
3answers
125 views

Split datalist into sections

Within my datalist, I want to create a separation dividing each ItemTemplate with a new year, when a different year occurs. I select my data using: MySqlDataAdapter adapter = new ...
1
vote
1answer
226 views

Strange DataList select/unselect behavior

I'm having a hard time understanding how DataList select/unselect is supposed to work. I was under the impression that when you set the SelectedIndex the DL will change switch the item display to the ...
1
vote
2answers
534 views

Horizontal Table With DataList And DIVs?

I'm trying to create a table layout with headers on the left and horizontally aligned fields. (See mock-up below.) I'm trying to accomplish this using a DataList -- stuck with .NET 2.0 -- and wrapped ...

1 2 3 4 5 6