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 |
Explain about common language infrastructure?
What are relation objects in dataset?
Explain .net mobile automatic paging? : Microsoft dot net mobile
What are the different pipelining hazards? : Dot net architecture
How to implement the display in the class printdoc (how to resolve the naming conflict) a: no naming conflicts
What is biginteger and when would you use that?
how to make my form not to appear in the task bar?
What is ITIL? What is the use of ITIL and how it works?
Explain hard disk and what is its purpose? : Dot net architecture
What is the difference between Server.Transfer and Response.Redirect? Why would I choose one over the other?
How cache coherency is eliminated? : Dot net architecture
What is IL code, CLR, CTS, GAC & GC?