I'm trying to load text from one text box in my Admin Web Form, to my Home Page web form text box
I have tried this code but I literally can not get it working since my admin class will not detect the control from the other web form..
I'm trying to load text from one text box in my Admin Web Form, to my Home Page web form text box
I have tried this code but I literally can not get it working since my admin class will not detect the control from the other web form..
You can use
Session
variables to transfer text (or data) from one page to another.In the source page, you save the data in the
Session
variable:In the destination page, you load the save text:
You can use additional
Session
variables (e.g.Session["AboutUs"]
) to transfer the other data.