how to send some information from one web form to another web form in asp.net first web form is HumanList.aspx that shows the list of humans in a GridView
HumanList.aspx
GridView
Consider using session or query string.
Session could be used like
pass value
Session["value"]=someValue;
get value like
var value= Session["value"].toString();
You could pass values with the help of properties too