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
define cache memory? : Dot net architecture
can Array contains different datatypes ?
How can I write my own .NET host?
What is the difference between primary & secondary storage device? : Dot net architecture
What is .net mobile lists. : Microsoft dot net mobile
How do I know when my thread pool work item has completed?
What is boxing and unboxing? Does it occure automaatically or you need to write code to box and unbox?
Explain Singleton design pattern in .net
What is cookie less session?
What are .net mobile controls features? : Microsoft dot net mobile
When do I need to use gc.keepalive?