Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
How to Select DropDownList by Integer Value
Message
 
General information
Forum:
ASP.NET
Category:
Other
Environment versions
Environment:
C# 2.0
OS:
Vista
Network:
Windows 2008 Server
Database:
MS SQL Server
Miscellaneous
Thread ID:
01361227
Message ID:
01361228
Views:
13
Why not simply assign SelectedValue ?

>Hi,
>
>I have a drop down list on a page. The drop down list is bound to a DataView and the DataValueField is an integer field. I.e:
>
>
>ddlSite.DataSource = dvSite;
>ddlSite.DataTextField = "SITE_DESC";
>ddlSite.DataValueField = "SITE_NO";  //  Integer field
>ddlSite.DataBind();
>
>
>Now I want to select an item of this drop down list by a certain integer value (e.g. 1). How do I select the drop down list by an integer value?
>
>For example, if the DataValueField were a character type I would select as following (this one works):
>
>
>string MyString = "123";
>dlSite.Items.FindByValue( MyString ).Selected = true;
>
>
>But when the DataValueField is Integer, I can't seem to find the correct syntax.
>
>UPDATE:. Found solution. The same as with a character type string.
If it's not broken, fix it until it is.


My Blog
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform