Ask a Question related to ASP.NET General, Design and Development.
-
Michal A. Valasek #1
Re: Default dropdownlist to database value
You may add DB items to dropdown either by data binding or "by hand" using
similar code in some loop:
LI = New ListItem
LI.Value = "value"
LI.Text = "Display text"
SomeDropDown.Items.Add(LI)
You can set selected item for example using:
lstVideoName.Items.FindByValue("value").Selected = True
--
Michal A. Valasek, Altair Communications, [url]http://www.altaircom.net[/url]
Please do not reply to this e-mail, for contact see [url]http://www.rider.cz[/url]
Michal A. Valasek Guest
-
Reg: Showing default data in DropDownList
Hi I have a datagrid with 2 DropDownList controls...I am binding data to these controls on pageload event. I wanted to show some default text... -
Datagrid Dropdownlist in default in edit mode
Elton Wang wrote: Hi Elton, Thanks for you help. I think you meant ddlreason.selectedindex = I on that 4th to the last line right? -
#25420 [Bgs]: pg_connect using connectstring only connect with default database
ID: 25420 User updated by: domingo at dad-it dot com Reported By: domingo at dad-it dot com Status: Bogus Bug Type:... -
Selection List from Database with default value
I have a form which has a dropdown box created from a MySQL database. The first value is displayed in the box and clicking on the down arrow shows... -
DropDownList and AutoPostback -- default item
Hello -- Is there a way to prevent the autopostback of a drop down list if there is a "default" item in the list -- example, a drop down list... -
alien2_51 #2
Re: Default dropdownlist to database value
ddlSomeDropDown.Items.FindByValue("Database Value").Selected = True
"Kerri" <kerri@nospam.com> wrote in message
news:08d001c35df6$15080150$a001280a@phx.gbl...> Hi,
>
> I have an aspx page with a drop down.
>
> This is a page where a user can edit their user profile.
>
> When they go to this page, I want the dropdownlists to
> default to what it is in teh user table.
>
> I have tried calling a function that renders out the
> html, but my html looks like <asp:listitem> so it is not
> interpreting the server side code.
>
> Anyone know how to do this i.e. set the selected value to
> that in the database and render out additional items in
> the list?
>
> Thanks,
> C.
alien2_51 Guest



Reply With Quote

