|
-
Oct 16th, 2002, 05:23 AM
#1
Thread Starter
New Member
drop down list
Hi all,
how to populate a drop down list control (.aspx page)
with a database field.
pls help urgent.
rgds,
edna
-
Oct 17th, 2002, 10:17 AM
#2
New Member
Protected WithEvents MyDropDownList As System.Web.UI.WebControls.DropDownList
Protected WithEvents MyDataSet As MyDataSet
Dim MyComponant As Component = New Component()
MyComponant.MyDataAdapter.Fill(MyDataSet)
MyDropDownList.DataBind()
ps. This is assuming you have created;
a componant within you application,
a dataadapter within your componant
and a dataset that relates to your dataadapter
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|