I am currently having an issue with MenuItemButtons. I have two buttons going to the same custom ASP.NET Enterprise Portal page, but one button I want to open the page in "ReadOnly" mode where none of the fields are editable, and the other I want to open the page in "Edit" mode.
Within these buttons, I have the "OpenMode" set to View and Edit, and I have the "Parameter" property set to "mode=0" or "mode=1"
However, I cannot find any way to access either of these properties in the custom ASP.NET web page. Nothing withing the request or url has either of these properties. DialogHelper.DialogArgs does not have something I can use. A dummy AxForm on the page does not inherit the view mode.
What else can I do aside from making to separate pages?