my application will add and delete and update records in db
my problem is when to update and delete ..
I have two dropdownboxes one to retreive servers and one to retreive dbs in the server ...
SqlDataAdapter daa =
new SqlDataAdapter("SELECT * FROM DB_tbl"+","+"Servers_tbl where Servers_tbl.Server_Name == '"+ DropDownList4.SelectedValue +"' ", sqlConnection1 );
this is the structure of each table >>
servers_tbl : SRV_ID,Server_name
DB_teb : DB_ID,SRV_ID,DB_name
the dropdown box retreive just the names ... so what is the base of where part of the command
hint : the DB_tbl does not have the server name but has the sever id
Hi Adorer,
Based on my understanding, you need to know when to issue a data bind on the dropdownlist which displays db names.
I think you can handle the SelectedIndexChanged event of the Server DropDownList to fill the db names.
You can use 2 SqlDataSources and use a ControlParameter to achieve this. Also, make sure you have set AutoPostback property to true.
HTH. If this does not answer you question, please feel free to mark it as Not Answered and post your reply. Thanks!
No comments:
Post a Comment