blah blah blah is here! blah blah » Close

0
votes
1 answers

DropDownList

DropDownList6.Items.Add(new ListItem("sweeper", "1")); DropDownList6.Items.Add(new ListItem("watchman", "2")); if (DropDownList6.SelectedValue == "1") { Response.Redirect("sw ...

1
votes
1 answers

Is it possible to add a dropdownlist inside the radiobuttonlist as an item?

Is it possible to add a dropdownlist inside the radiobuttonlist as an item? if so how? Thanks!

0
votes
1 answers

Advanced Custom DropDownList

Hi All, I have a basic Custom DDL control at the moment (Code Below, feel free to use, I found it on a blog!) [code] using System; using System.Web; using System.Web.UI.WebControls; using System.Collections; // my own Namesp ...

0
votes
0 answers

DropDownList

Use asp.NET and I'm Learning the web forms. PC with OS Windows XP DBMS = sql server 2k . I have a problem using the DropDownList Control. Step 1: ======= I have a table : myTable(id int not null, name varchar(40) ) (the id is a ...

0
votes
2 answers

Dropdownlist binding asp.net

Hi I'm doing a web application in VS2008 (C#), and I got stucked. I have a webform with 1 dropdownlist for collecting the first names of the employees, and then some textboxes where the user enter his data into. The user will select his ...

0
votes
1 answers

DataSet and DropDownList C#/ASP

I load my dataset of last names properly into a dropdownlist using an object data source. I want to accomplish the following: 1) My current dataset returns AuthorID, LastName, FirstName from MySQL 2) I need to eliminate LastName and Fir ...

Feedback