SlideShare ist ein Scribd-Unternehmen logo
1 von 50
Downloaden Sie, um offline zu lesen
Sitecore MVC Advanced
Kevin Brechbühl
Unic AG
@aquasonic
Sitecore User Group Conference 2015 1
About
• Senior Sitecore developer & architect @unic
• Sitecore Technology MVP 2015
• Co-founder of @sugch
Sitecore User Group Conference 2015 2
Agenda
• ASP.net MVC vs. Sitecore MVC
• Multiple Forms
• MVC Forms Localization
• MVC Areas
• There is always more...
Sitecore User Group Conference 2015 3
ASP.net MVC vs. Sitecore MVC
Sitecore User Group Conference 2015 4
Traditional ASP.net MVC
Sitecore User Group Conference 2015 5
Traditional ASP.net MVC
Sitecore User Group Conference 2015 6
Sitecore MVC
Sitecore User Group Conference 2015 7
Sitecore MVC
Sitecore User Group Conference 2015 8
Sitecore MVC
Sitecore User Group Conference 2015 9
Sitecore MVC
Sitecore User Group Conference 2015 10
Sitecore MVC
Sitecore User Group Conference 2015 11
ASP.net MVC
• Request correspond to
controller action
• One view with several partial
views
• 1 controller & 1 action
Sitecore MVC
• Request correspond to
Sitecore item
• Views defined in
presentation details
• n controllers & n actions
Sitecore User Group Conference 2015 12
ASP.net MVC vs. Sitecore MVC
Resources
• Comparison from John West
http://bit.ly/SitecoreMvcComparison
• ASP.net MVC Lifecycle
http://bit.ly/MvcLifecycle
• Sitecore MVC Pipelines
http://bit.ly/SitecoreMvcPipelines
Sitecore User Group Conference 2015 13
Multiple Forms
Sitecore User Group Conference 2015 14
ASP.net MVC form posts
• Each form has 2 actions
• Handling GET requests
• Handling POST requests
• Action has ActionMethodSelector
• [HttpGet] or empty
• [HttpPost]
Sitecore User Group Conference 2015 15
ASP.net MVC form posts
Sitecore User Group Conference 2015 16
{ CODE }
Issues with Sitecore?
• Multiple controllers & multiple actions
• Post to same page / url
• Each [HttpPost] action is called
• Each form is validated
• AntiForgeryToken does not work properly
Sitecore User Group Conference 2015 17
Solutions
• Post via Ajax
• Sitecore MVC Form Handler
• Custom ActionMethodSelector
• As close to ASP.net MVC as possible
• None of the described issues
Sitecore User Group Conference 2015 18
Custom ActionMethodSelector
• Adding a hidden field to the form
• Unique Id of the rendering
• Post to same page / url
• Adding the ActionMethodSelector to the action
• Verify the posted rendering id
Sitecore User Group Conference 2015 19
Custom ActionMethodSelector
Sitecore User Group Conference 2015 20
{ CODE }
Resources
• Mine: http://bit.ly/MultipleForms1
• Renoud van Dalen: http://bit.ly/MultipleForms2
Sitecore User Group Conference 2015 21
MVC Forms localization
Sitecore User Group Conference 2015 22
MVC Forms localization
• Ways to translate an ASP.net MVC form
• Use .NET language pack
• Add static textes
• Use .NET resource files
• Localization within Sitecore
• Sitecore dictionaries
Sitecore User Group Conference 2015 23
MVC Forms localization
Sitecore User Group Conference 2015 24
{ CODE }
Translate labels
• Use custom MetaDataProvider
• First create the default metadata for a field
• Type, Format etc.
• Override the DisplayName
Sitecore User Group Conference 2015 25
Translate labels
Sitecore User Group Conference 2015 26
{ CODE }
Translate labels
• Conflicts with WFFM MVC
• Override the WFFM provider
• Register custom provider after WFFM provider
Sitecore User Group Conference 2015 27
Translate validation messages
• Custom DataAnnotationsModelValidator
• Works as an adapter
• Each validator type needs a custom adapter
Sitecore User Group Conference 2015 28
Translate validation messages
Sitecore User Group Conference 2015 29
{ CODE }
Resources
• Sitecore Usergroup Switzerland
• From @studert and me
• http://bit.ly/FormsLocalization
Sitecore User Group Conference 2015 30
MVC Areas
Sitecore User Group Conference 2015 31
Structure of Areas
Sitecore User Group Conference 2015 32
Default
Structure of Areas
Sitecore User Group Conference 2015 33
Default
Area 1
Structure of Areas
Sitecore User Group Conference 2015 34
Default
Area 2
Area 1
Areas what?
• Split models/views/controllers in different areas
• Used with multiple sites/layouts in one Sitecore instance
• No support by Sitecore, because
• No area token in Sitecore default route
• Layout termination over pipelines and presentation details
Sitecore User Group Conference 2015 35
Solutions
• Resolve in mvc.renderRendering pipeline
• Use custom ControllerRunner and Renderer
• Resolve by <site>
Sitecore User Group Conference 2015 36
Resolve in mvc.renderRendering pipeline
• Set RouteData.DataTokens["area"]
• Controller is then resolved in area
• Resolve the area in a custom pipeline
• New fields on folders / renderings
• Resource
• BrainJocks SCORE: http://bit.ly/MvcAreas1
Sitecore User Group Conference 2015 37
Resolve in mvc.renderRendering
Sitecore User Group Conference 2015 38
{ CODE }
Use custom ControllerRunner
• Custom ControllerRunner in mvc.getRenderer pipeline
• Also set RouteData-token
• Resolve area by new «Area Controller Rendering»
• With new AreaControllerRenderer
• Resource
• Christian van de Luitgaarden: http://bit.ly/MvcAreas2
Sitecore User Group Conference 2015 39
Use custom ControllerRunner
Sitecore User Group Conference 2015 40
{ CODE }
Resolve by <site>
• Adding new route per <site>
• Configure with new parameter
• Before the Sitecore default route
• Add RouteData-token and constraint to each route
• Resource
• Chris van de Steeg: http://bit.ly/MvcAreas3
Sitecore User Group Conference 2015 41
Resolve by <site>
Sitecore User Group Conference 2015 42
{ CODE }
But, wait...
Sitecore User Group Conference 2015 43
Sitecore Area support
• Pattern from BrainJocks
• Multiple strategies to resolve the area
• Extensible by developers
Sitecore User Group Conference 2015 44
There is always more...
Sitecore User Group Conference 2015 45
Other resources
• Sample Items in MVC
http://bit.ly/Sample7Mvc & http://bit.ly/Sample8Mvc
• Async Sitecore controllers
http://bit.ly/AsyncControllers
• Using Dependency Injection to determine MVC Models
http://bit.ly/ModelsDI
• BrainJocks SCORE
http://bit.ly/BJScore
Sitecore User Group Conference 2015 46
UserVoice
• Sitecore needs your feedback
• Share and vote your ideas
• Not only for MVC ;-)
• http://bit.ly/MvcUserVoice
Sitecore User Group Conference 2015 47
/me
• Twitter: @aquasonic
• Private Blog: http://ctor.io
• Sitecore Vibes: http://sitecore.unic.com
• Sitecore Usergroup Switzerland: http://sugch.github.io
Sitecore User Group Conference 2015 48
Thank you
Sitecore User Group Conference 2015 49
Thank you
Sitecore User Group Conference 2015 50

Weitere ähnliche Inhalte

Was ist angesagt?

Discuss About ASP.NET MVC 6 and ASP.NET MVC 5
Discuss About ASP.NET MVC 6 and ASP.NET MVC 5Discuss About ASP.NET MVC 6 and ASP.NET MVC 5
Discuss About ASP.NET MVC 6 and ASP.NET MVC 5Aaron Jacobson
 
Everything you need to know about HTML5 in 15 min
Everything you need to know about HTML5 in 15 minEverything you need to know about HTML5 in 15 min
Everything you need to know about HTML5 in 15 minEdgar Parada
 
Grails At Linked
Grails At LinkedGrails At Linked
Grails At LinkedLinkedIn
 
Using MVC with Kentico 8
Using MVC with Kentico 8Using MVC with Kentico 8
Using MVC with Kentico 8Thomas Robbins
 
Grails patterns and practices
Grails patterns and practicesGrails patterns and practices
Grails patterns and practicespaulbowler
 
Understanding SharePoint Framework Extensions
Understanding SharePoint Framework ExtensionsUnderstanding SharePoint Framework Extensions
Understanding SharePoint Framework ExtensionsBIWUG
 
SharePoint Framework
SharePoint FrameworkSharePoint Framework
SharePoint FrameworkVitaly Zhukov
 
Lwc presentation
Lwc presentationLwc presentation
Lwc presentationNithesh N
 
Playing in the Sandbox by Wictor Wilén
Playing in the Sandbox by Wictor WilénPlaying in the Sandbox by Wictor Wilén
Playing in the Sandbox by Wictor WilénWictor Wilén
 
Connecticut Salesforce Developer Group - Jan 2017
Connecticut Salesforce Developer Group - Jan 2017Connecticut Salesforce Developer Group - Jan 2017
Connecticut Salesforce Developer Group - Jan 2017Jitendra Zaa
 
An Introduction to the Office 365 Patterns and Practices Project
An Introduction to the Office 365 Patterns and Practices ProjectAn Introduction to the Office 365 Patterns and Practices Project
An Introduction to the Office 365 Patterns and Practices ProjectSPC Adriatics
 
Using the Kentico CMS API
Using the Kentico CMS APIUsing the Kentico CMS API
Using the Kentico CMS APIThomas Robbins
 
Salesforce Lightning Data Service
Salesforce Lightning Data ServiceSalesforce Lightning Data Service
Salesforce Lightning Data ServiceJitendra Zaa
 
SharePoint + Silverlight - new BFF's by Wictor Wilén
SharePoint + Silverlight - new BFF's by Wictor WilénSharePoint + Silverlight - new BFF's by Wictor Wilén
SharePoint + Silverlight - new BFF's by Wictor WilénWictor Wilén
 

Was ist angesagt? (20)

Discuss About ASP.NET MVC 6 and ASP.NET MVC 5
Discuss About ASP.NET MVC 6 and ASP.NET MVC 5Discuss About ASP.NET MVC 6 and ASP.NET MVC 5
Discuss About ASP.NET MVC 6 and ASP.NET MVC 5
 
Everything you need to know about HTML5 in 15 min
Everything you need to know about HTML5 in 15 minEverything you need to know about HTML5 in 15 min
Everything you need to know about HTML5 in 15 min
 
Grails At Linked
Grails At LinkedGrails At Linked
Grails At Linked
 
Using MVC with Kentico 8
Using MVC with Kentico 8Using MVC with Kentico 8
Using MVC with Kentico 8
 
Grails patterns and practices
Grails patterns and practicesGrails patterns and practices
Grails patterns and practices
 
Understanding SharePoint Framework Extensions
Understanding SharePoint Framework ExtensionsUnderstanding SharePoint Framework Extensions
Understanding SharePoint Framework Extensions
 
Kentico and MVC
Kentico and MVCKentico and MVC
Kentico and MVC
 
AngularJS Basics
AngularJS BasicsAngularJS Basics
AngularJS Basics
 
SharePoint Framework
SharePoint FrameworkSharePoint Framework
SharePoint Framework
 
Lwc presentation
Lwc presentationLwc presentation
Lwc presentation
 
Developing Sandbox Solutions
Developing Sandbox SolutionsDeveloping Sandbox Solutions
Developing Sandbox Solutions
 
Playing in the Sandbox by Wictor Wilén
Playing in the Sandbox by Wictor WilénPlaying in the Sandbox by Wictor Wilén
Playing in the Sandbox by Wictor Wilén
 
Angularjs Basics
Angularjs BasicsAngularjs Basics
Angularjs Basics
 
Word on the Server
Word on the ServerWord on the Server
Word on the Server
 
Connecticut Salesforce Developer Group - Jan 2017
Connecticut Salesforce Developer Group - Jan 2017Connecticut Salesforce Developer Group - Jan 2017
Connecticut Salesforce Developer Group - Jan 2017
 
MVC 6 Introduction
MVC 6 IntroductionMVC 6 Introduction
MVC 6 Introduction
 
An Introduction to the Office 365 Patterns and Practices Project
An Introduction to the Office 365 Patterns and Practices ProjectAn Introduction to the Office 365 Patterns and Practices Project
An Introduction to the Office 365 Patterns and Practices Project
 
Using the Kentico CMS API
Using the Kentico CMS APIUsing the Kentico CMS API
Using the Kentico CMS API
 
Salesforce Lightning Data Service
Salesforce Lightning Data ServiceSalesforce Lightning Data Service
Salesforce Lightning Data Service
 
SharePoint + Silverlight - new BFF's by Wictor Wilén
SharePoint + Silverlight - new BFF's by Wictor WilénSharePoint + Silverlight - new BFF's by Wictor Wilén
SharePoint + Silverlight - new BFF's by Wictor Wilén
 

Andere mochten auch

Introducing Sitecore - The Experience Platform
Introducing Sitecore - The Experience PlatformIntroducing Sitecore - The Experience Platform
Introducing Sitecore - The Experience PlatformAdrian IORGU
 
Introduction To Umbraco
Introduction To UmbracoIntroduction To Umbraco
Introduction To UmbracoKen Cenerelli
 
Era of Engagement Marketing / Marketo
Era of Engagement Marketing / MarketoEra of Engagement Marketing / Marketo
Era of Engagement Marketing / MarketoAvaus
 
Marketo Real Time Web Personalisation
Marketo Real Time Web Personalisation  Marketo Real Time Web Personalisation
Marketo Real Time Web Personalisation Marketo
 
Why Web Personalisation - Web personalisation workshop tania
Why Web Personalisation  - Web personalisation workshop   taniaWhy Web Personalisation  - Web personalisation workshop   tania
Why Web Personalisation - Web personalisation workshop taniaMarketo
 
Website personalization: The best way to boost your conversion rates
Website personalization: The best way to boost your conversion ratesWebsite personalization: The best way to boost your conversion rates
Website personalization: The best way to boost your conversion ratesQubit
 
Real-Time Personalization: How to Optimize Your Website and Boost Conversions
Real-Time Personalization: How to Optimize Your Website and Boost ConversionsReal-Time Personalization: How to Optimize Your Website and Boost Conversions
Real-Time Personalization: How to Optimize Your Website and Boost ConversionsMarketo
 
Real-Time Personalization: Top 5 Use Cases to Boost Conversions
Real-Time Personalization: Top 5 Use Cases to Boost ConversionsReal-Time Personalization: Top 5 Use Cases to Boost Conversions
Real-Time Personalization: Top 5 Use Cases to Boost ConversionsMarketo
 
「実践ドメイン駆動設計」社内読書会まとめ ~IDDD本難民に捧げる1章から7章~
「実践ドメイン駆動設計」社内読書会まとめ ~IDDD本難民に捧げる1章から7章~「実践ドメイン駆動設計」社内読書会まとめ ~IDDD本難民に捧げる1章から7章~
「実践ドメイン駆動設計」社内読書会まとめ ~IDDD本難民に捧げる1章から7章~A AOKI
 

Andere mochten auch (9)

Introducing Sitecore - The Experience Platform
Introducing Sitecore - The Experience PlatformIntroducing Sitecore - The Experience Platform
Introducing Sitecore - The Experience Platform
 
Introduction To Umbraco
Introduction To UmbracoIntroduction To Umbraco
Introduction To Umbraco
 
Era of Engagement Marketing / Marketo
Era of Engagement Marketing / MarketoEra of Engagement Marketing / Marketo
Era of Engagement Marketing / Marketo
 
Marketo Real Time Web Personalisation
Marketo Real Time Web Personalisation  Marketo Real Time Web Personalisation
Marketo Real Time Web Personalisation
 
Why Web Personalisation - Web personalisation workshop tania
Why Web Personalisation  - Web personalisation workshop   taniaWhy Web Personalisation  - Web personalisation workshop   tania
Why Web Personalisation - Web personalisation workshop tania
 
Website personalization: The best way to boost your conversion rates
Website personalization: The best way to boost your conversion ratesWebsite personalization: The best way to boost your conversion rates
Website personalization: The best way to boost your conversion rates
 
Real-Time Personalization: How to Optimize Your Website and Boost Conversions
Real-Time Personalization: How to Optimize Your Website and Boost ConversionsReal-Time Personalization: How to Optimize Your Website and Boost Conversions
Real-Time Personalization: How to Optimize Your Website and Boost Conversions
 
Real-Time Personalization: Top 5 Use Cases to Boost Conversions
Real-Time Personalization: Top 5 Use Cases to Boost ConversionsReal-Time Personalization: Top 5 Use Cases to Boost Conversions
Real-Time Personalization: Top 5 Use Cases to Boost Conversions
 
「実践ドメイン駆動設計」社内読書会まとめ ~IDDD本難民に捧げる1章から7章~
「実践ドメイン駆動設計」社内読書会まとめ ~IDDD本難民に捧げる1章から7章~「実践ドメイン駆動設計」社内読書会まとめ ~IDDD本難民に捧げる1章から7章~
「実践ドメイン駆動設計」社内読書会まとめ ~IDDD本難民に捧げる1章から7章~
 

Ähnlich wie Sitecore MVC Advanced Techniques

SUGCON 2015 Modelling
SUGCON 2015 ModellingSUGCON 2015 Modelling
SUGCON 2015 ModellingGlasslu
 
Water cad v8i user's guide
Water cad v8i user's guideWater cad v8i user's guide
Water cad v8i user's guidemignan22
 
Sitecore - what to look forward to
Sitecore - what to look forward toSitecore - what to look forward to
Sitecore - what to look forward tojinto77
 
ASP.NET Core in Action (2018).pdf
ASP.NET Core in Action (2018).pdfASP.NET Core in Action (2018).pdf
ASP.NET Core in Action (2018).pdfEmma Burke
 
Testing microservices with docker
Testing microservices with dockerTesting microservices with docker
Testing microservices with dockerDenis Brusnin
 
Create A Mapping Web Part
Create A Mapping Web PartCreate A Mapping Web Part
Create A Mapping Web PartTom Resing
 
Sitecore MVC Forms Localization
Sitecore MVC Forms LocalizationSitecore MVC Forms Localization
Sitecore MVC Forms LocalizationTobias Studer
 
New SharePoint Features in Visual Studio 2012!
New SharePoint Features in Visual Studio 2012!New SharePoint Features in Visual Studio 2012!
New SharePoint Features in Visual Studio 2012!SPC Adriatics
 
MVC 6 - the new unified Web programming model
MVC 6 - the new unified Web programming modelMVC 6 - the new unified Web programming model
MVC 6 - the new unified Web programming modelAlex Thissen
 
Debugging Integration Flows
Debugging Integration FlowsDebugging Integration Flows
Debugging Integration FlowsWSO2
 
Making ultra fast ultra scalable solutions with sitecore 8
Making ultra fast ultra scalable solutions with sitecore 8Making ultra fast ultra scalable solutions with sitecore 8
Making ultra fast ultra scalable solutions with sitecore 8Mark van Aalst
 
Tarabica 2019 - Migration from ASP.NET MVC to ASP.NET Core
Tarabica 2019 - Migration from ASP.NET MVC to ASP.NET CoreTarabica 2019 - Migration from ASP.NET MVC to ASP.NET Core
Tarabica 2019 - Migration from ASP.NET MVC to ASP.NET CoreMiroslav Popovic
 
2011 NetUG HH: ASP.NET MVC & HTML 5
2011 NetUG HH: ASP.NET MVC & HTML 52011 NetUG HH: ASP.NET MVC & HTML 5
2011 NetUG HH: ASP.NET MVC & HTML 5Daniel Fisher
 
New in Visual Studio and TFS 2013
New in Visual Studio and TFS 2013New in Visual Studio and TFS 2013
New in Visual Studio and TFS 2013Tung Nguyen Thanh
 
Scribe online 03 scribe online cdk and api overview
Scribe online 03   scribe online cdk and api overviewScribe online 03   scribe online cdk and api overview
Scribe online 03 scribe online cdk and api overviewScribe Software Corp.
 
Microsoft Certified Solution Developer.pptx
Microsoft Certified Solution Developer.pptxMicrosoft Certified Solution Developer.pptx
Microsoft Certified Solution Developer.pptxjemalda
 

Ähnlich wie Sitecore MVC Advanced Techniques (20)

SUGCON 2015 Modelling
SUGCON 2015 ModellingSUGCON 2015 Modelling
SUGCON 2015 Modelling
 
Water cad v8i user's guide
Water cad v8i user's guideWater cad v8i user's guide
Water cad v8i user's guide
 
Sitecore - what to look forward to
Sitecore - what to look forward toSitecore - what to look forward to
Sitecore - what to look forward to
 
ASP.NET Core in Action (2018).pdf
ASP.NET Core in Action (2018).pdfASP.NET Core in Action (2018).pdf
ASP.NET Core in Action (2018).pdf
 
Aspnet mvc
Aspnet mvcAspnet mvc
Aspnet mvc
 
Testing microservices with docker
Testing microservices with dockerTesting microservices with docker
Testing microservices with docker
 
Create A Mapping Web Part
Create A Mapping Web PartCreate A Mapping Web Part
Create A Mapping Web Part
 
Sitecore MVC Forms Localization
Sitecore MVC Forms LocalizationSitecore MVC Forms Localization
Sitecore MVC Forms Localization
 
New SharePoint Features in Visual Studio 2012!
New SharePoint Features in Visual Studio 2012!New SharePoint Features in Visual Studio 2012!
New SharePoint Features in Visual Studio 2012!
 
MVC 6 - the new unified Web programming model
MVC 6 - the new unified Web programming modelMVC 6 - the new unified Web programming model
MVC 6 - the new unified Web programming model
 
Debugging Integration Flows
Debugging Integration FlowsDebugging Integration Flows
Debugging Integration Flows
 
Making ultra fast ultra scalable solutions with sitecore 8
Making ultra fast ultra scalable solutions with sitecore 8Making ultra fast ultra scalable solutions with sitecore 8
Making ultra fast ultra scalable solutions with sitecore 8
 
Tarabica 2019 - Migration from ASP.NET MVC to ASP.NET Core
Tarabica 2019 - Migration from ASP.NET MVC to ASP.NET CoreTarabica 2019 - Migration from ASP.NET MVC to ASP.NET Core
Tarabica 2019 - Migration from ASP.NET MVC to ASP.NET Core
 
2011 NetUG HH: ASP.NET MVC & HTML 5
2011 NetUG HH: ASP.NET MVC & HTML 52011 NetUG HH: ASP.NET MVC & HTML 5
2011 NetUG HH: ASP.NET MVC & HTML 5
 
Introduction to SignalR
Introduction to SignalRIntroduction to SignalR
Introduction to SignalR
 
Asp.Net MVC 5 in Arabic
Asp.Net MVC 5 in ArabicAsp.Net MVC 5 in Arabic
Asp.Net MVC 5 in Arabic
 
New in Visual Studio and TFS 2013
New in Visual Studio and TFS 2013New in Visual Studio and TFS 2013
New in Visual Studio and TFS 2013
 
Scribe online 03 scribe online cdk and api overview
Scribe online 03   scribe online cdk and api overviewScribe online 03   scribe online cdk and api overview
Scribe online 03 scribe online cdk and api overview
 
Microsoft Certified Solution Developer.pptx
Microsoft Certified Solution Developer.pptxMicrosoft Certified Solution Developer.pptx
Microsoft Certified Solution Developer.pptx
 
ms_project_ppt
ms_project_pptms_project_ppt
ms_project_ppt
 

Kürzlich hochgeladen

Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEarley Information Science
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure servicePooja Nehwal
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Paola De la Torre
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 

Kürzlich hochgeladen (20)

Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 

Sitecore MVC Advanced Techniques