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 the purpose of cache? : Dot net architecture
how to change the application name?
when garbage collector come into picture. ?
Explain dma? : Dot net architecture
what is stage management ? (ASP.NET)
Define cache? : Dot net architecture
can aspx page contains two pager tags ?
What is the purpose of hard disk? : Dot net architecture
Do you know textbox and textview controls of .net mobile? : Microsoft dot net mobile
Please tell me the .net 2.5 frame work with example
Explain the purpose of cache? How is it used? : .NET Architecture
How can a win service developed in .NET be installed or used in Win98?