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 |
Wcf- What is ABC
What is textbox control of .net mobile? : Microsoft dot net mobile
i wish to write mcts(microsoft certified technology specialist) exam. can anyone give the model question or format and preparation method?
What are different types that a variable can be defined and their scopes ?
3. Should validation (did the user enter a real date) occur server-side or client-side? Why?
which of the following statement is true about gac. a)it is being handled by .net framwork b)It is special folder c)it can have files with same name etc etc.
What is gui programming? : .NET Architecture
what is the difference between value types and reference types?
What is the main Difference Between .Net 2003 and .Net 2005.and also Asp1.1,Asp2.0 and Asp3.0
What is the difference between an event and a delegate?
how to make my form not to appear in the task bar?
How can a win service developed in .NET be installed or used in Win98?