Hi All,
I have a asp.net page which should is designed to capture the user preference for a where clause. As the total columns in a particular table is more than 50 and they can choose any of the columns for a search criteria, I have created the following controls as dynamic controls
1. Dropdown list --> which contains the 50+ columns to be selected for the next where clause purpose
2. A simple dropdown --> which contains conditions (<,>, >= etc...)
3. Text box --> which contains the value
now when the dropdown is selected to a specific column and the conditions (<) is mentioned and the value is specified, I also need this to be updated in the Textbox . The textbox is not a dynamic control.
I have created these dynamic controls when a Add button is clicked and during the postback in page load as well.
Now how will I get to register this dynamic controls to trigger the textbox to reflect the user selection.
Kindly guide me...
Thanks
Pad