vote up 0 vote down star

hi all

i want to add a datasource to dropdownlist this dropdownlist is one of the column of gridview here i want to add a datasource to dropdownlist at dynamically without using the sqldatasource

(vs2008 and c#)

flag

0% accept rate

4 Answers

vote up 1 vote down

You could implement the OnDataBinding event for the dropdownlist control in your grid. In the event you could assign the DataSource property and other attributes to whatever you like. Bind it to a List<YourObject> even.

Doing it on the OnDataBinding event also allows you to customize the values in the ddl on the fly as well. So each row's ddl could have a different set of options available based on some other data in your row if you need that type of functionality.

Tons of flexability with the ASP.NET controls if the OnDataBinding method is used instead of the auto (easy mode) wire ups.

link|flag
thnx for ur quick reply yes it will work – thiru Jun 9 at 6:08
pls tell me i set datasource like OnDataBinding event DropDownList11.DataSource = dataTable; DropDownList11.DataValueField = "ProjectCode"; DropDownList11.DataTextField = "ProjectCode"; DropDownList11.DataBind(); but the error will occur like the name "DropDownList11" does not exist in the current context – thiru Jun 9 at 6:16
vote up 1 vote down

yes as it is in the itemtemplate so you wont get it directly for that you have to use findcontrol

link|flag
vote up 0 vote down

I do agree with kelsey... you should use onDataBinding event.

link|flag
thnx for ur quick reply yes it will work – thiru Jun 9 at 6:08
pls tell me i set datasource like OnDataBinding event DropDownList11.DataSource = dataTable; DropDownList11.DataValueField = "ProjectCode"; DropDownList11.DataTextField = "ProjectCode"; DropDownList11.DataBind(); but the error will occur like the name "DropDownList11" does not exist in the current context – thiru Jun 9 at 6:18
yes as it is in the itemtemplate so you ont get it directly for that you have to use findcontrol. – Meetu Choudhary Jun 9 at 7:23
vote up 0 vote down

Refer link below

Populating dropdownlist in gridviw

.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.