I have a master page with one property name event type. Now I want to set this property from a content page and then that property value should be available to another conte
If your pages are from different requests, a master property will not work. The master page is not static, there is a different one for each request, which means that the instance you set the value on is gone when you try to retrieve it. The Session
dictionary is where you should put user content that you want to persist between requests.