design
Welcome
CANCEL PRODUCTS
in DropDownList i have 3 list namely 1.Vegetables 2. Grocery 3.Pharmacy ,if i choose Vegetables a list will shown in gridview in that i have to edit and cancel .(using link button)
i have to edit and cancel the item if i choose Vegetables in dropdownlist. i never use storeprocedure

Dorababu MekaPosted Oct 4, 2012, 4:21 AM
LIST.ASPX
Dorababu MekaPosted Oct 4, 2012, 3:52 AM
selvi subramanianPosted Oct 2, 2012, 12:12 AM
if i chose vegetables and the details in vegetables in table shown in gridview in grid view i have to edit and update the details
Dorababu MekaPosted Oct 1, 2012, 9:08 AM
This is what I done binding dropdown and gridview with stroredprocedure and 3 tier architecture
Dorababu MekaPosted Oct 1, 2012, 8:33 AM
Dorababu MekaPosted Oct 1, 2012, 6:44 AM
When coming to code
m_oCmd.Parameters.AddWithValue("_EmpID", EmpID); //Here your field that you have defined in stored procedure
// Add necessarry and required as per you need
m_oCmd.ExecuteNonQuery();
selvi subramanianPosted Oct 1, 2012, 6:36 AM
Dorababu MekaPosted Oct 1, 2012, 6:33 AM
inside gridview you will have a dropdown with the same category on edit and update if user change and update you have to update back to the DB using the same architecture .
Is it Right