Click here to Skip to main content
15,880,543 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more: , +
i want three fields in dropdown list in gridview . Pending , Solved , Escalate.

when i first submit the record it should show pending , then from dropdown i want to update it to solved or escalate , and it will be update with dropdown in database . how can i do this process
Posted

1 solution

Hi,

you need to follow below steps :

1. Make a master table named status_master fileds must be id,status like

ID Status

1 Solved

2 Pending


it ll be table for status

2. Now in other table for each question put id of status_master to show thestatus of question you can make id field of status_master as fk.
3. Now on bind the dropdownlist from the table status_master with the datavalue fiels is id
4. now on the dropdownlistselectionindexchnaged even write the query to find the value on the basis of selected id in dropdownlist.

Hope you got my point if not let me know i am keen to explain it clealry and love to sole the problem

Thanks.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900