IN C#
if we click a field in the dropdownlist then i have to get
the respected field details in the next textbox..........

Answer Posted / subru

You have to set the Autopostback property of dropdown to
true. And in the dropdownlist's selecetedIndexChanged()
event write the logic to get the value to testbox.

For eg:
private void cmbOperationSelect_SelectedIndexChanged(object
sender, EventArgs e)
{
textbox1.Text =
cmbOperationSelect.Selecteditem.value;
}

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Xmlserializer is throwing a generic "there was an error reflecting myclass" error. How do I find out what the problem is?

556


Different types of authentication modes in .net framework ?

558


What is a clickonce application?

526


Define a managed code? : Dot net architecture

520


Tell me .net mobile emulators? : Microsoft dot net mobile

566






Explain about the base class library provided by microsoft.net?

524


What is a virtual memory? : Dot net architecture

551


Explain pipelining? : .NET Architecture

556


What is cache coherency? : Dot net architecture

501


What happens when you try to update data in a dataset in .net while the record is already deleted in sql server as backend?

527


I can't be bothered with cas. Can I turn it off?

540


What is the difference between machine config vs. Web config : Dot net architecture

504


What is .net mobile utility controls. Explain with an example? : Microsoft dot net mobile

483


How does an appdomain get created?

567


Explain about code access security?

572