Friday, November 29, 2019

GridView button click event (sender)



 TextBox txt = (TextBox)sender;

 GridViewRow gvRow = (GridViewRow)txt.Parent.Parent;

 DropDownList ddl=(DropDownList)gvRow.FindControl("ddl");

No comments:

Post a Comment

base 64 convert to image

public Image LoadImage() {     //data:image/gif;base64,     //this image is a single pixel (black)     byte[] bytes = Convert.FromBase6...