I need a GlobalTemplateTagExtender fore the SetGlobalTemplateTag method in the PageView class.
Or a possibility to add custom global templatetags to the PageView before the SetGlobalTemplateTags is executed.
Example (From the CustomModules Page_Load):
Dynamicweb.Frontend.PageviewControl pvCtrl = new Dynamicweb.Frontend.PageviewControl();
Output.Controls.Add(pvCtrl);
//New feature
Pageview.GlobalTagCollection.Add("CustomGlobalTag:1",strGlobalTag1);
Pageview.GlobalTagCollection.Add("CustomGlobalTag:2",strGlobalTag2);
pvCtrl.Pageview = Pageview;
pvCtrl.ParseControls();