Selection in one dropdown list effecting the visibility of another dropdown list
I have two drop down lists. They are not databound. We'll called them dropdownlist1 and dropdownlist2.Basicly, I want people to choose an object in the first dropdownlist. Depending on their selection, it will make certain items in dropdownlist2 invisible.Currently my thought is to have something in the lines of the following (In the dropdownlist1 - SelectedIndexChanged - Postback being set to Auto)if dropdownlist1.text = "Such and such" then(this is where I would declare which options are available)However, I do not know the proper syntax of saying make the following item...
Dropdown list bound to another dropdown list
I have two dropdown lists on my page. The first contains a list of names and the second contains a list of hardware devices.
My problem is: When i choose a name from the first dropdown i need the second to become populated with their related devices. This works fine, however if i then change the name in the first dropdown list, it adds another set of devices to the devices dropdown list.
The way i want it to work is to refresh the devices dropdown when the name is changed. So that only that persons related devices show up (in the second dropdown)
Any help would be much apprecia...
Filter dropdown list from another dropdown list
Help Please!!!
I am trying to filter the data in a dropdown list from information chosen in another dropdown list.
1st table has modification types, 2nd table has modifications. When the user chooses the modification type needed, then only those modifications should appear in the 2nd list.
mydata7 = New SqlDataAdapter("Select * from ModificationList ", myconnection)
ds7 = New DataSet
mydata7.Fill(ds7, "table")
Dim dr7 As DataRow
ddlModification.Items.Add("Please select Modification ...")
...
How to combind two dropdown list values into one dropdown list?
Hi All,
I refered some websites, they are combinding two dropdown list values into single, but i don't know .Net will support it or not? If any body knows it plz tell me how to achieve it??
EX: Go to Naukri.com and select Functional Area dropdown list there u can see main & sub category names in one dropdown list!!!
Thanks,
Aswath.
hi just concatenate , or - for ex:Dropdownlist1.Datatextfield= maincategory & "," & Subcategory Regards,M.VenkatesanMy Blog : http://venkat-dotnetsamples.blogspot.comPlease remember to click “Mark as Answer” on the pos...
How to get value from first dropdown list to second dropdown list
Hi
Does soneone know hot to get value from first dropdown list to second dropdown list or remove it from seond dropdown list?
I have a web form page. On the page, there are two dropdown lists, one Add button, and one Remove button . First dropdown list has four list items. Second one does not have list item yet. When select a item from first dropdown list, then click "add" button. I want it to apear in the second dropdown list without reload the page. Or select item from second dropdown list, and click "Remove" button. it will remove from second list. Please help.
&nb...
Filling a dropdown list, based on a selection from another dropdown list
This seemed like a simple venture, and may be, but with my limited asp.net knowledge, I am having a problem...
Basically, I have a page that is gathering information. I want a user to be able to select a value from a dropdown list... On Auto postback I would like to make a second listbox visible and bind data to it based on the selection from the first. (While keeping the value of the first listbox available)
Right now I am filling my dataset with the tables used in the page load event and setting my second listbox.visible to false. in the SelectedIndex_change event of the first...
Populate a Dropdown List based on the value of another Dropdown List
Hi ALL, I have two Dropdown List.I need to Populate second Dropdown List based on the value of first Dropdown List.I am n't using Update Panel.Pls suggest me RegardsSri
ASP.NET AJAX Cascading DropdownDarrell Norton, MVPDarrell Norton's BlogPlease mark this post as answered if it helped you!
just populate second dropdown in SelectedIndexChanged event of the first dropdown. Muhammad ShoaibSoftware Engineer,Lahore, Pakistanwww.heartofpakistan.com (U/C)--------------------------------Mark it as ANSWER if it Helps U
Check out this link with co...
Can I populate a Dropdown list in a GridView from another Dropdown list
Hi there,
I have a Gridview control that contains 2 DDLs. The first one is populated on page load (from a Generic list in the code behind) and is working with no problems. I want to populate the 2nd DDL by making a selection in the first DDL which in turn would call a DB method and cause a postback.
I've tried using the "OnSelectedIndexChanged" method for the DDL and the "FindControl" method for the 2nd DDL, but the GridView can't find it on Postback and throws an error. I've also tried using the "onSelectedIndexChanged" method for the GridView bu...
Populate dropdown list based on selected value in another dropdown list
I have a datagrid (grdCar) that contains two dropdown listboxes (ddlCarManf and ddlCar). When the user clicks the "Edit" link and places the grid into edit mode, they select a value in ddlCarManf. Based on the selected value in ddlCarManf, I need to then populate ddlCar with a list of cars for which the selected manufacturer makes (I'm using ddlCarManf.SelectedValue to query the database).
I bind my datagrid in the page_load event as:
If Not Page.IsPostBack Then
BindGrid()
End If
Here is my control (ddlCarManf) as is appears within grdCar in ...
dropdown list in vb.net 2003
hi all
i have problem in vb.net 2003
when i take integer from dropdownlist and then
make any function suh as
drop down list have value from data base and the displaymember is integer 30,50 etc
and this function for adding the displaymember to another value take from textbox
dim x,r,s as integer
x=cost.selectedindex() or any selected for dropdownlist (selecteditem ,displaymember ,selectedindex ......etc)
r=textbox1.text
s=r+x
textbox2.text=s
dont give any solution in the textbox2
thanks
amani
Hi amani
I am sorry I dont know wha...
DropDown List Validatoin in VB.net
I have 2 Dropdownlists. The first Dropdown list ('dropdownlist1') has 4 selections a user can choose from. What I am trying to do is if a user selects a certain selection (say Selection1) that in the 2nd dropdownlist (dropdownlist2) there would be a 2nd selections they can choose from. So if that 'Selection1' from the 'dropdownlist1' was not select, then there would only be 1 selection under 'dropdownlist2'.
Try the ASP.NET AJAX CascadingDropdown.Darrell Norton, MVPDarrell Norton's BlogPlease mark this ...
automatically generating content in a dropdown list based on the selection of another dropdown list
hi i currently have a "categories" dropdown list i'm using to help filter data in a datagrid (have it setup using data and table adapters). i've introduced another dropdown list (called subcategories) to filter the datagrid so it only displays records that fit in both the category and subcategories.it all works fine, but i'm wanting to set it so the subcategories dropdown list gets generated on the client-side depending on the category selected. does anybody have any quick tutorials or a quick explination on how i could do this? am i missin...
VB.Net Dropdown list item issues
I have created a form that has a drop down list. It is a static drop down list that is not bound to a datasource
I have added the lists and values in the Items section in properties and named the ID but i dont know if i have to do anything else to get it to work, do I need to have something in the DataTextField or the DataValueField.
If i dont can someone please also let me know what VB.net code i need behind it, i have at the moment the following
Str += "&extype=" + extype.DataTextField
if this is not right for this type of drop down box what is
I have tried e...
Move List Box Items to another List Box in VB.net
Please helping to solve this problem.i need the code in VB.net
Something to get you started:
Default.aspx
<table border="0"> <tr> <td> <asp:ListBox ID="ListBox1" runat="server" Rows="10" Width="100" SelectionMode="Multiple"> <asp:ListItem>James</asp:ListItem> <asp:ListItem>Kumar</asp:ListItem> <asp:ListItem>Ravi</asp:ListItem> <asp:ListItem>Reshmi</asp:ListItem> <asp:ListItem>Rachel</asp:ListItem> <asp:List...