how to bind grid when dropdown value change then gridview rice (Bind in Label) should change like as :-
if i select dropdown menu value 1
then grid bind Price 100
if i select dropdown menu value 2
then grid bind Price 200 Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Riddhi ValechaPosted Sep 29, 2014, 12:43 AM
ddl.Items.Add(new System.Web.UI.WebControls.ListItem("100", "1")); ddl.Items.Add(new System.Web.UI.WebControls.ListItem("200", "2"));
ddl.Items.Add(new System.Web.UI.WebControls.ListItem("300", "3"));
Saineshwar BageriPosted Sep 29, 2014, 12:46 AM