IN C#
if we click a field in the dropdownlist then i have to get
the respected field details in the next textbox..........
Answer Posted / 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 |
Post New Answer View All Answers
Explain hard disk? : Dot net architecture
What is Com Callable wrapper?when it will created?
Explain what does the term "green architecture" mean? : .NET Architecture
Explain the types of memory management? : Dot net architecture
Does .NET runtime offer Deterministic Destruction or not?
where should I put this information then?
How do I know when my thread pool work item has completed?
Why am I getting an invalidoperationexception when I serialize an arraylist?
What is one way operation?
What are the options provived by vss to the user? how it will help us while delevoping application?
State the different levels of exceptional safety?
Whate are resource files? How are they used in .net?
What is difference between Desktop, Client Server & Web based applications?
if there are two application 1 and 2 having a variable x in both app if client1 changes value of x in 1 app client 2 want reads the value of x from 2 app what resultant value will he get
What are the different pipelining hazards? : Dot net architecture