How to get the values from the “Parameters” field (second screenshot) in the code lock of the subblock?
I understand that I can get / set the rendering parameters (in particular, the subarea) when it is added to the details of the element’s presentation, as described here ( Sitecore 6 - using parameters ).

However, I would like to use the parameter field from the layout definition element. In the code for the file definition-related code, I can cast the parent to a sublayer, and this object also has a property .Parameters, however it does not contain the expected values.

This is the method Page_Loadin the control code:
protected void Page_Load(object sender, EventArgs e)
{
var sublayout = ((Sublayout)this.Parent);
string rawParameters = Attributes["sc_parameters"];
NameValueCollection parameters =
Sitecore.Web.WebUtil.ParseUrlParameters(rawParameters);
}
Doublecheck still does not work, only additional parameters:



