Error executing template "Designs/exhibition_site/ecom/product/partials/profile-details/MCH365-topsection.cshtml"
System.ArgumentException: An item with the same key has already been added.
at System.ThrowHelper.ThrowArgumentException(ExceptionResource resource)
at System.Collections.Generic.Dictionary`2.Insert(TKey key, TValue value, Boolean add)
at Co3.MCH.Website.Frontend.Repositories.BaseRepository.GetAssetIds(Profile profile, String type, String cacheKey, MCH365ViewType viewType) in C:\Data\Development\git\mch365mb-dev\Co3.MCH.Website.Frontend\Repositories\BaseRepository.cs:line 58
at Co3.MCH.Website.Frontend.Repositories.ProductRepository.GetProducts(Profile profile, MCH365ViewType viewType) in C:\Data\Development\git\mch365mb-dev\Co3.MCH.Website.Frontend\Repositories\ProductRepository.cs:line 326
at Co3.MCH.Website.Frontend.Services.MCH365.ProductService.GetProducts(Profile profile, MCH365ViewType viewType) in C:\Data\Development\git\mch365mb-dev\Co3.MCH.Website.Frontend\Services\MCH365\ProductService.cs:line 244
at Co3.MCH.Website.Frontend.Services.MCH365.ProductService.GetProductProducts(Profile profile, MCH365ViewType viewType) in C:\Data\Development\git\mch365mb-dev\Co3.MCH.Website.Frontend\Services\MCH365\ProductService.cs:line 191
at Co3.MCH.Website.Frontend.Models.Frontend.Ecommerce.ProfileProduct.get_Products() in C:\Data\Development\git\mch365mb-dev\Co3.MCH.Website.Frontend\Models\Frontend\Ecommerce\ProfileProduct.cs:line 60
at CompiledRazorTemplates.Dynamic.RazorEngine_8fe88dd1c59f45408be898bc2e181600.Execute() in E:\Websites\mch365.espresso5.dk\Files\Templates\Designs\exhibition_site\ecom\product\partials\profile-details\MCH365-topsection.cshtml:line 69
at RazorEngine.Templating.TemplateBase.RazorEngine.Templating.ITemplate.Run(ExecuteContext context, TextWriter reader)
at RazorEngine.Templating.RazorEngineService.RunCompile(ITemplateKey key, TextWriter writer, Type modelType, Object model, DynamicViewBag viewBag)
at RazorEngine.Templating.RazorEngineServiceExtensions.<>c__DisplayClass16_0.<RunCompile>b__0(TextWriter writer)
at RazorEngine.Templating.RazorEngineServiceExtensions.WithWriter(Action`1 withWriter)
at Dynamicweb.Rendering.RazorTemplateRenderingProvider.Render(Template template)
at Dynamicweb.Rendering.TemplateRenderingService.Render(Template template)
at Dynamicweb.Rendering.Template.RenderRazorTemplate()

1 @inherits ViewModelTemplate<Co3.Espresso.Website.Models.FrontEnd.Ecommerce.EspressoProduct> 2 @using System.Text.RegularExpressions 3 @using Dynamicweb.Rendering 4 @using Co3.Espresso.Website.Services 5 @using Co3.MCH.Data.Apps 6 @using Co3.MCH.Data.Models.MCH365 7 @using Co3.MCH.Website.Frontend.Helpers 8 @using Co3.MCH.Website.Frontend.Models.Frontend 9 @using Co3.MCH.Website.Frontend.Models.Frontend.Ecommerce 10 @using Dynamicweb.Content 11 @using Dynamicweb.Core 12 @using Dynamicweb.Deployment.DataItemProviders.Forms 13 @using Dynamicweb.Frontend 14 @using Page = System.Web.UI.Page 15 @using PageService = Dynamicweb.Content.PageService 16 @using ParagraphService = Co3.Espresso.Website.Services.ParagraphService 17 18 @{ 19 ProfileProduct profileProduct = (ProfileProduct) Model; 20 bool hasPresentation = profileProduct.HasPresentation; 21 string companyBannerImage = profileProduct.Company.BannerImage; 22 bool companyBookMeeting = profileProduct.Contact.BookMeeting; 23 bool companyDirectContact = profileProduct.Contact.DirectContact; 24 string companyEmail = profileProduct.Company.Email; 25 string companyName = profileProduct.Company.Name.Replace("\"", "'"); 26 IEnumerable<BoothInfo> booths = profileProduct.Booths; 27 28 string companyColor = ""; 29 30 if (profileProduct.Company.BrandColor.IsNullOrEmpty()) 31 { 32 companyColor = MCH365Context.Current.TradeShowDetails.PrimaryColor; 33 } 34 else 35 { 36 companyColor = profileProduct.Company.BrandColor; 37 } 38 39 // CUSTOM COMPANY COLOR SCHEME 40 Regex hexcodeRegex = new Regex(@"^#([A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})$"); 41 companyColor = hexcodeRegex.IsMatch( companyColor ) ? companyColor : "#000000"; 42 ColorHelper.HSL brandExhibitor = ColorHelper.Instance.HexToHsl(companyColor); 43 44 string textColor = brandExhibitor.L < 60 ? "e-text-light" : ""; 45 46 } 47 48 <section class="p mb-0 p-banner-gradient-disabled pt-auto pb-auto p-banner e-section js-e-section align-items-stretch mch365-custom-product-details-banner" id="14098"> 49 <div class="p-img-container bg-center-middle" style="background-image: url('@companyBannerImage'); background-color: var(--exhibition-profile-exhibitor-brand-color);" title=""></div> 50 @if (!string.IsNullOrEmpty(companyBannerImage)) 51 { 52 <div class="mch365-custom-product-details-banner-top-shadow"></div> 53 <div class="mch365-custom-product-details-banner-bottom-shadow"></div> 54 } 55 56 <div class="container-fluid align-self-end m-0 p-0 mch365-custom-product-top-content-wrapper @textColor"> 57 <div class="container-fluid"> 58 <div class="row"> 59 <div class="d-none d-md-flex col-12 col-md-4 col-lg-3"> 60 &nbsp; 61 </div> 62 <div class="col-12 col-md-8 col-lg-9 d-flex justify-content-center justify-content-md-between my-2"> 63 <nav class="e-nav-product-details-local d-none d-md-flex"> 64 <ul class="nav"> 65 <li class="nav-item"> 66 <a href="@(PageView.Current().SearchFriendlyUrl)#presentation" class="nav-link"> 67 <span class="e-nav-pagename">@Translate("MCH365 - Exhibitor details topSectionLinkBarPresentation - Text", "Præsentation")</span> 68 </a> 69 @if (profileProduct.Products.Products.Any()) { 70 <a href="@(PageView.Current().SearchFriendlyUrl)#products" class="nav-link"> 71 <span class="e-nav-pagename">@Translate("MCH365 - Exhibitor details topSectionLinkBarProducts - Text", "Produkter")</span> 72 </a> 73 } 74 @if (profileProduct.Articles.Products.Any()) 75 { 76 <a href="@(PageView.Current().SearchFriendlyUrl)#articles" class="nav-link"> 77 <span class="e-nav-pagename">@Translate("MCH365 - Exhibitor details topSectionLinkBarArticles - Text", "Artikler")</span> 78 </a> 79 } 80 @if (profileProduct.Cases.Products.Any()) 81 { 82 <a href="@(PageView.Current().SearchFriendlyUrl)#cases" class="nav-link"> 83 <span class="e-nav-pagename">@Translate("MCH365 - Exhibitor details topSectionLinkBarCases - Text", "Cases")</span> 84 </a> 85 } 86 @if (profileProduct.Events.Products.Any()) 87 { 88 <a href="@(PageView.Current().SearchFriendlyUrl)#events" class="nav-link"> 89 <span class="e-nav-pagename">@Translate("MCH365 - Exhibitor details topSectionLinkBarEvents - Text", "Events")</span> 90 </a> 91 } 92 </li> 93 </ul> 94 </nav> 95 96 @if (!string.IsNullOrEmpty(companyEmail)) 97 { 98 <nav class="e-nav-product-details-local justify-content-end"> 99 <ul class="nav d-flex justify-content-center"> 100 @if (companyDirectContact) 101 { 102 <li class="nav-item"> 103 <a class="nav-link" href="javascript:void(0);" data-toggle="modal" data-target="#mch365-modal-mail-form" data-heading="@Translate( "MCH365 - Exhibitor details topSectionContactModalPromptDirectContact - Text", "Tag direkte kontakt" )" data-type="@Constants.DW_FORMS_DIRECTCONTACT_FORMTYPE" data-asset-id="@Model.Id"> 104 <span class="e-nav-pagename d-flex align-items-center"> 105 <span class="mch-365-custom-inline-icon e-nav-product-details-local-icon"> 106 @ImageService.Instance.GetSvgMarkup( "/Files/Templates/Designs/exhibition_site/_assets/img/custom-icons/custom-icon-email-action-edit.svg" ) 107 </span> 108 <span class="e-nav-pagename-name">@Translate( "MCH365 - Exhibitor details topSectionContactModalPromptDirectContact - Text", "Tag direkte kontakt" )</span> 109 </span> 110 </a> 111 </li> 112 } 113114 @if (companyBookMeeting) 115 { 116 <li class="nav-item"> 117 <a class="nav-link" href="javascript:void(0);" data-toggle="modal" data-target="#mch365-modal-mail-form" data-heading="@Translate("MCH365 - Exhibitor details topSectionContactModalPromptBookMeeting - Text", "Book et møde")" data-type="@Constants.DW_FORMS_BOOKMEETING_FORMTYPE" data-asset-id="@Model.Id"> 118 <span class="e-nav-pagename d-flex align-items-center"> 119 <span class="mch-365-custom-inline-icon e-nav-product-details-local-icon"> 120 @ImageService.Instance.GetSvgMarkup("/Files/Templates/Designs/exhibition_site/_assets/img/custom-icons/custom-icon-calendar-edit.svg") 121 </span> 122 <span class="e-nav-pagename-name">@Translate("MCH365 - Exhibitor details topSectionContactModalPromptBookMeeting - Text", "Book et møde")</span> 123 </span> 124 </a> 125 </li> 126 } 127 </ul> 128 </nav> 129 } 130 </div> 131 </div> 132 </div> 133 </div> 134135136 </section> 137138139 @{ 140 int currentPageId = PageView.Current().Page.ID; 141 Paragraph currentParagraph = PageView.Current().CurrentParagraph; 142 int currentParagraphId = currentParagraph.GlobalRecordParagraphID; 143 Dynamicweb.Content.Page modalFormPage = new PageService().GetPagesByParentID( currentPageId ).FirstOrDefault(); 144 IEnumerable<Paragraph> paragraphs = ParagraphService.Instance.GetParagraphsByPageId( modalFormPage.ID ); 145146 foreach (Paragraph paragraph in paragraphs.Where(p => p.ModuleSystemName == "BasicForms") ) 147 { 148 int paragraphPageID = paragraph.PageID; 149 PageView pageView = PageView.GetPageviewByPageID(paragraphPageID); 150 string formMarkup = Content.GetModuleOutput(paragraph,pageView); 151 int.TryParse( paragraph.ModuleProperties[ "formSubmitPageAfterSave" ].ToLower().Split( new[] {"?id="}, StringSplitOptions.None ).Last(), out int afterSavePageID ); 152153 <!-- Modal confirm --> 154 <div class="modal fade js-mch365-modal-form" id="@paragraph.Item["CustomClasses"]" data-post-url="/@pageView.Page.GetPageHrefValue()" data-asset-id="@Model.Id" tabindex="-1" role="dialog" aria-labelledby="" aria-hidden="true"> 155 <div class="modal-dialog" role="document"> 156 <div class="modal-content border-radius border-0 custom-section-dropshadow background-blur"> 157 <div class="modal-header border-bottom-0 justify-content-end"> 158 <a class="custom-section-closebutton" data-dismiss="modal" aria-label="Close" href="#"> 159 @ImageService.Instance.GetSvgMarkup("/Files/Templates/Designs/mch365_admin/_assets/img/streamline/close_black_24dp.svg") 160 </a> 161 </div> 162 <div class="modal-body"> 163 <div class="row px-lg-3"> 164 <div class="col-12 col-xl-6 pr-lg-3"> 165 <div data-content-type="contactPersonImage" class="js-mch365-contactperson-image" style="display: none;"> 166 <img src="/admin/public/getimage.ashx?Image={{contactPersonImage}}&amp;Width=80&amp;Height=80&amp;Format=webp&amp;Quality=0&amp;Crop=0" class="border-radius-sm js-temp-element mb-1 p-img" itemprop="image" alt=""> 167 </div> 168169 <p class="mt-2">@Translate("MCH365 - Exhibitor details form intro - Text", "Du skriver direkte til leverandøren.")</p> 170 <p>@Translate("Vi glæder os til at høre fra dig!")<br/><strong>@Model.Name</strong></p> 171 </div> 172 <div class="col-12 col-xl-6"> 173 @formMarkup.Replace( "/Default.aspx?ID=" + currentPageId + "&PID=" + currentParagraphId, "/Default.aspx?ID=" + paragraphPageID + "&PID=" + paragraph.ID ).Replace( "js-e-form-dw", string.Empty ) 174 </div> 175 </div> 176177 <div class="js-mch365-respons-content" style="display: none;"> 178 @RenderPageContent(afterSavePageID) 179 </div> 180181 </div> 182 </div> 183 </div> 184 </div> 185 } 186 } 187188 @SnippetStart("profileProductCompanyName")@companyName@SnippetEnd("profileProductCompanyName") @* Avoid using linebreaks in this snippet, as it will also add linebreaks to the content *@

Number of employees

51-100

Locations

Nyborg, Danmark

München, Tyskland

Find us at

STEFFCA A/S


STEFFCA is a family-owned Danish company and a specialist in gaskets, seals, and insulation solutions.

Dedication
Our expertise is built on more than 30 years of dedication to continuously improving and delivering the best solutions to our customers. Manufacturing high-quality products requires not only an advanced machinery setup, but also solid experience and specialised knowledge – something we have gained through years of hard work.

Our flexible production facility in Nyborg enables us to deliver tailored solutions for almost every industry – both in Denmark and internationally – from pharmaceuticals to the maritime sector. We always deliver high quality and lead times that are hard to match. We are known for our dedication to quality, service, innovation, and fast delivery.

ESG
Integrity and responsibility are part of our DNA and form the foundation of how we do business. It means everything to us that STEFFCA is run as responsibly as possible. We are committed to doing things properly – and to documenting it. That is why we have prepared an ESG report based on the VSME standard. We place a strong focus on ESG and are actively engaged in mapping our carbon footprint, promoting social responsibility, and practising accountable leadership.

Innovation
We are continuously working to improve and develop products and solutions that create value for our customers. At STEFFCA, innovation means combining experience with modern technology to ensure that our solutions always meet high standards of quality, precision, durability, and performance. We invest continuously in advanced equipment and efficient processes, enabling us to deliver customised solutions quickly and to a high standard – even when requirements change along the way.

Fast Delivery
With our large inventory and strong production capacity, we ensure that our customers never run out of gaskets.

High Quality
We maintain a strong focus on quality in every aspect of our work. From material selection and production to final quality control, we never compromise. Our solutions are quality-assured and documented, ensuring high performance, long service life, and consistent quality every time.

Meet us

Martin Steffensen

Contact

Martin Steffensen

Mikkel Steffensen

Contact

Mikkel Steffensen

Rene Jeppesen

Contact

Rene Jeppesen

Jesper W. Jørgensen

Contact

Jesper W. Jørgensen

Thomas Methmann

Contact

Thomas Methmann

Jesper Tuemand Jessen

Contact

Jesper Tuemand Jessen

Annette Hougaard

Contact

Annette Hougaard

Emil Laursen

Contact

Emil Laursen

Products at STEFFCA A/S


Cases written by STEFFCA A/S


Company profiles, as well as areas of specialization and interest, have been completed and added by the suppliers and are not based on the knowledge or assessment of HI Tech & Industry Scandinavia.