How to pass information between web forms in asp.net

后端 未结 5 1096
面向向阳花
面向向阳花 2021-01-02 14:18

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

5条回答
  •  长发绾君心
    2021-01-02 14:50

    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

提交回复
热议问题