One of the gridview columns contains a button, with additional columns being added to the gridview via code behind. The click event is attached using the following line of code:
cmd1.OnClientClick += new EventHandler(cmd1_Click);
However, upon clicking the button, a runtime error occurs and breaks at System.EventHandler
of
<input type="submit" name="grvList$ctl02$ctl05" value="Add" onclick="System.EventHandler;" />
Has anyone encountered this issue before?