Hi All, I have a page with name Default.aspx, on Default.aspx I have Property
protected string pageNo = string.Empty;
public string PageNo
{
get { return pageNo; }
set { pageNo = value; }
}
and second page is myPage.aspx have the similar property. Now I want to access the Default.aspx page property on the myPage.aspx or assign it in the myPage.aspx page's property. Is it possible if yes then how to do?