IN C#
if we click a field in the dropdownlist then i have to get
the respected field details in the next textbox..........
Answers were Sorted based on User's Feedback
Answer / navigator
initally set the AutoPostBack true for the DropDownList and
in SelectedIndexChaged() method of the DropDrownList write
the business logig for the details to be displayed..
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / 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 |
What is .net mobile images control. Explain with an example? : Microsoft dot net mobile
what is managed code and managed data?
Explain the difference between l1 and l2 cache? : .NET Architecture
which control is used to compare two controls?
Why only boxed types can be unboxed?
what to choose among testing, .net , and java for a B-Tech (ECE) fresher.
what is the method while we are using adapter and dataset ?
What is IL code, CLR, CTS, GAC & GC?
What are end points, contract, address and bindings?
what is ado.net
Whate are resource files? How are they used in .net?
What is cache coherency and how is it eliminated? : .NET Architecture