I have a page called Default.aspx, on Default.aspx I have a property
protected string pageNo = string.Empty;
public string PageNo
{
get { return pageNo; }
set { pageNo = value; }
}
and the second page myPage.aspx has a similar property. Now I want to access the property of the Default.aspx page on myPage.aspx or assign it in the property of the myPage.aspx page. Is it possible, if so, how to do this?
source
share