Manually Coding an Edit, Update, Cancel Button in Gridview Asp.net
-
I have this gridview in asp.net where the data shown comes from a stored procedure my stored procedure has this query: AS BEGIN SELECT vw_AppInfo.ID, vw_AppInfo.FIRST_NAME, vw_AppInfo.MIDDLE_NAME, vw_AppInfo.LAST_NAME, vw_AppInfo.EXTN, vw_AppScore.ADMISSION_SCORE FROM vw_AppInfo RIGHT JOIN vw_AppScore ON vw_AppInfo.ID = vw_AppScore.ID WHERE vw_AppInfo.REMARKS = 'ACCEPTED' END and this is my gridview: what I need is that only the Admission_Score/Score column can be edited. I tried using the commandfield but the "update" does not work.
-
I have this gridview in asp.net where the data shown comes from a stored procedure my stored procedure has this query: AS BEGIN SELECT vw_AppInfo.ID, vw_AppInfo.FIRST_NAME, vw_AppInfo.MIDDLE_NAME, vw_AppInfo.LAST_NAME, vw_AppInfo.EXTN, vw_AppScore.ADMISSION_SCORE FROM vw_AppInfo RIGHT JOIN vw_AppScore ON vw_AppInfo.ID = vw_AppScore.ID WHERE vw_AppInfo.REMARKS = 'ACCEPTED' END and this is my gridview: what I need is that only the Admission_Score/Score column can be edited. I tried using the commandfield but the "update" does not work.
Hi, please use instead of please see the link for help ASP.NET GridView: CRUD Operations[^]
hi