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 |
which would be the best to use inproc,outproc or sql server
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 is the purpose of Treeview control?
What is .net mobile images control. Explain with an example? : Microsoft dot net mobile
What does this do? Gacutil /l | find /i "corillian"
What is application frame host?
What are different types that a variable can be defined and their scopes ?
What happens when you try to update data in a dataset in .net while the record is already deleted in sql server as backend?
Define pipelining? : Dot net architecture
What's the difference between an application and a program?
1. How to restrict a class from allowing to create only one object. I.e., one should be allowed to create only one object of the class type.
1 Answers 247Customer, FinEngine, TCS,
Define an interrupt? : Dot net architecture