1
vote
2answers
130 views

how to set multiple items are selected in ListBox?

i have one ListBox with selection mode of multiple. In code behind, i want to set some values are selected, which values are present in ListItems[] named as 'Names'. My code is here.. Html code: ...
1
vote
0answers
245 views

ListItems attributes in a DropDownList are lost after postback?

I have manually add some addition attirubte during dropdownlist databound event. However, after postback the attribute is missing. And i found related issue at ListItems attributes in a DropDownList ...
0
votes
1answer
58 views

ASP.Net ListItem Value Property Max length

Seems like a pretty straightforward question, but I can't find it anywhere. Does anyone know the max length the value of a ListItem can be? I am sure it is more than I will ever need for what I am ...
0
votes
2answers
250 views

Get attribute from DropdownList SelectedItem

I have a dropdownlist where I need to store more data than the standard list item allows. The approach I've taken is to add an attribute to each of the listitems. I monitor for changes and can return ...
0
votes
2answers
169 views

ASP.NET: How to specify text color of a ListItem?

How do I specify the text color of a ListItem in the following code? Thanks. <asp:CheckBoxList id="check1" AutoPostBack="True" TextAlign="Right" OnSelectedIndexChanged="Check" runat="server"> ...
-1
votes
2answers
190 views

Check li click value

I m using two list items with link. Now I want to check which link was clicked from the client side. Here is my code: <ul id="navtabs"> <li id="basic" runat="server" ...
0
votes
2answers
195 views

asp.net how to use list Item Clicked Event UserDetails.aspx

When the list item is clicked then i want it to redirect to UserDetails.aspx?Id=" + Session["UserId"].ToString()); . I tryed <li class="active "><a ...
0
votes
1answer
633 views

How to change listview selected row backcolor with Mouseover Event

I have an ASP.NET Application and use a ListView. This ListView has rows and columns. The columns are Firstname, Lastname, email etc... Every Control in this ListView is a LinkButton. My Idea: If ...
2
votes
3answers
888 views

How to create a nested bulleted list

I am using ASP.net with C# and I would like to have a list that i can code dynamically to look like somewhat this: Menu Item A Sub Menu Link 1 Sub Menu Link 2 Sub Menu Link 3 ...
1
vote
0answers
368 views

listbox selects wrong item

Update I have solved the issue, however will finish posting this (solved prior to posting) in hopes it might help someone else out. Issue: Referencing and manipulating listitems from a listbox ...
0
votes
1answer
727 views

ListItem.Attributes.Add not working

I am trying to add a custom attribute to list item but it is not adding it My code is this ListItem item = new ListItem(teamMemberGroup.Name, teamMemberGroup.ID); ...
0
votes
1answer
5k views

How to find a control located inside datalist itemtemplate, on a Page_Load event?

I have a datalist which display's thumbnails of images and a download icon under it, when user clicks on the download icon, system download's the image at client's location. <asp:DataList ...
0
votes
2answers
662 views

Save value of checkboxlist item on each check

I have a checkboxlist containing 9 items.. The max no of checks that a user can check is only 3.... How do I go about doing something like... (1) on the 1st check, store the item value in labelA.. ...
1
vote
3answers
1k views

Center RadioButtonList inside a panel

I cannot seem to be able to center my RadioButtonList inside a panel. It always seems to e left justified. No matter what I try. My current code is: <asp:panel ID="Panel1" runat="server" ...
0
votes
1answer
447 views

Can a data list be used to show different repeat columns based on what value is selected from a dropdown

1) Can a DataList be used to show different repeat columns based on what value is selected from a DropDown? So, for example, if a DropDown's value is selected to be 4, can all rows in a DataList be ...
1
vote
1answer
401 views

Jquery get the list item

How can i get the second list item value and assign to the textbox.For example my second list item is "edit profile" ,then after the textbox1 textchange, the textbox2 will auto assign "edit profile" ...
0
votes
1answer
1k views

Is it possible to maintain added Attributes on a ListItem while posting back?

I am generating ListItems for a CheckBoxList control in ASP, but when I do something like the following: ... Dim newListItem As ListItem = New ListItem("RoleName") newListItem.Attributes.Add("style", ...
-3
votes
3answers
90 views

City instead of id seems on dropdownlist value

I have a problem when load dropdownlist, city instead of id seems on dropdownlist value. What is the problem? #region CITIES public List<ListItem> loadCities() { using (SqlConnection conn = ...
0
votes
1answer
1k views

Asp.Net RadioButtonList Selected ListItem Not Recognized on Page Revisit

On my shipping address page there are two RadioButtonList ListItems (code shown below) that write to a database true or false based on user input. The first time a user selects a value and moves to ...
2
votes
2answers
2k views

How can I set alignment for a ListItem in a DropDownList?

I have a DropDownList in my aspx file like this: <asp:DropDownList runat="server" ID="MaxRec"> <asp:ListItem>10</asp:ListItem> <asp:ListItem>50</asp:ListItem> ...
0
votes
2answers
586 views

OnDataBound not fired for asp:DropDownList with static asp:ListItems

I have an <asp:DropDownList> witch gets filled by static list items. <asp:DropDownList ... OnDataBound="handlerMethod"> <asp:ListItem Value="..." Text="..." /> ...
0
votes
1answer
684 views

Hide Checkbox Icon for a ListItem in checkboxlist

Is there a way to hide the checkbox icon for an ListItem and just display the value-text. Like Below - Checkbox for items is hidden. I could figure out that I could disable (grey-out) or completely ...
1
vote
1answer
396 views

how to merge a CssStyleCollection with a System.Web.UI.WebControls.Style

i have a listitem and i want to set its style using a System.Web.UI.WebControls.Style but there is not mergestyle like there is on controls. there is a Attributes.CssStyle which is of type ...
0
votes
0answers
678 views

ListBox.ListItem.Selected always returns false

This is going to take a little while to explain, but here it goes: 1) I created an .aspx page with a PlaceHolder control. 2) I use the page to load a "container" UserControl from the db: protected ...
0
votes
1answer
257 views

Why is the ASP.NET ListItem class sealed?

I'm just curious. Why would the ASP.NET ListItem class need to be sealed?
3
votes
3answers
1k views

Converting an IEnumberable<string> to IEnumberable<ListItem>

I'm getting this error which while trying to use the yield return feature in C#. The error appears on the select inside visual studio and I don't really understand it. In my mind I'm converting a ...
0
votes
3answers
10k views

ASP.NET, VB: checking which items of a CheckBoxList are selected

I know this is an extremely basic question, but I couldn't find how to do this in VB... I have a CheckBoxList where one of the options includes a textbox to fill in your own value. So I need to have ...
0
votes
1answer
211 views

Get value of listitem on postback

I have two listitems and the postback and run a function. <asp:RadioButtonList runat="server" CssClass="ccsw" ID="ccsw" AutoPostBack="true" RepeatDirection="Horizontal" ...
0
votes
2answers
2k views

ASP.Net: How do I disable a ListItem?

I've come across an annoying problem that's probably really easy to solve if you're not a newb like myself... I've got a DropDownList in ASP.Net that has a ListItem that requires being disabled... ...
2
votes
4answers
3k views

How to allow html control inside a listitem?

The following compile error occurs: Parser Error Message: The 'Text' property of 'asp:ListItem' does not allow child objects. Source Error: Line 468: </asp:ListItem> Line 469: ...
2
votes
3answers
322 views

Want to add new properies in ListItem Collection

I am working on to create a custom control inherited by CheckboxList control. We can add items from ListItem collection editior at the design time. In this ListItem Collection editor there are 4 ...
0
votes
2answers
462 views

ASP.NET custom server control: nested items

In the aspx code view, we can code like this: <asp:ListBox runat="server"> <asp:ListItem Text="Item1" /> <asp:ListItem Text="Item2" /> </asp:ListBox> However, the ...
2
votes
3answers
4k views

How to set DropDownList selected item in markup?

I have a DropDownList in a template column of a GridView control. The GridView is bound to a list of objects. Each object has a property of type int which corresponds to a value in one of the ...
0
votes
2answers
2k views

How to force a line break in the listitems of a dropdownlist?

I have a dropdownlist that I already have manually databinding. I currently get the data, loop through each item, and depending on values in the item, change the css for the individual ListItem. For ...
0
votes
1answer
602 views

Custom Control Not Rendering After Event

I am just playing with custom controls, and have one built that looks like so: <cc:Test ID="jqTestTest01" runat="server" OnTestClick="jqTestTest01_TestClick"> <TestItems> ...
0
votes
2answers
762 views

UserControl Combined ListItems & ContentTemplate

Is it possible to build a UserControl that takes both ListItems and a ContentTemplate? Something like this: <Custom:UserControl ID="ucTest" runat="server"> <Items> <asp:ListItem ...
0
votes
2answers
888 views

How to Get Updates(changed Items) From CheckboxList?

I have a Checkbox list in my page and its datasource set programatically in PreLoad() event: protected void Page_PreLoad() { if (!Page.IsPostBack) { CheckBoxList1.DataSource = ...
17
votes
5answers
16k views

ListItems attributes in a DropDownList are lost on postback?

A coworker showed me this: He has a DropDownList and a button on a web page. Here's the code behind: protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { ...
8
votes
5answers
18k views

Databind ASP.NET List of ListItem to DropDownList issue

I've just come across this bizarre thing that I was expecting to work in a different (logical) way, but it doesn't. Is it a bug or a "feature"? So there's a DropDownList that I'm populating in the ...
13
votes
5answers
20k views

Set a CSS class on an ASP.NET RadioButtonList ListItem

Is there any way to set a CSS class on an input item in a radio button list? I'd like to reference these form values by class in jQuery. Given an ASP.NET RadioButtonList with classes set on the ...
4
votes
4answers
12k views

programmatically add css class to ListItem

I need to produce with asp.net controls this structure, but ListItem doesn't allow add properties and classes. What is the best way to do it? <ul> <li class="1">SomeText</li> ...
4
votes
4answers
23k views

Adding ListItems to a DropDownList from a generic list

I have a this aspx-code: (sample) <asp:DropDownList runat="server" ID="ddList1"></asp:DropDownList> With this codebehind: List<System.Web.UI.WebControls.ListItem> colors = new ...