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 Ienumerable
How can I write my own .NET host?
can Array contains different datatypes ?
How to upload in video,mp4,in .net 4.5 ..?
What are relation objects in dataset?
What is Com Callable wrapper?when it will created?
what does dot in .net means
Explain about code access security?
can aspx page contains two pager tags ?
What are public and private assemblies ?
Wcf- What is ABC
what is the method while we are using adapter and dataset ?