I am adding one image button in the Row Bound event of the Gridview as
The View source of the page isCode:ImageButton imgSortAssendingbyId = new ImageButton(); imgSortAssendingbyId.Click += new ImageClickEventHandler(this.imgSortAssendingbyId_Click); private void imgSortAssendingbyId_Click(object sender, ImageClickEventArgs e) { }
But the click event is not firingPHP Code:input type="image" name="grvResources$ctl01$ctl01" title="Sort Ascending" src="wv_sort_asc.gif" style="height:6px;border-width:0px;" />
![]()
I could not able to find the click event ?How to add the runat server property ?


Reply With Quote