{"id":11920,"date":"2018-06-08T17:12:59","date_gmt":"2018-06-08T11:42:59","guid":{"rendered":"https:\/\/www.inogic.com\/blog\/?p=11920"},"modified":"2018-06-08T17:12:59","modified_gmt":"2018-06-08T11:42:59","slug":"working-with-string-resx-web-resource-in-dynamics-365-v9-0","status":"publish","type":"post","link":"https:\/\/www.inogic.com\/blog\/2018\/06\/working-with-string-resx-web-resource-in-dynamics-365-v9-0\/","title":{"rendered":"Working with String (RESX) web resource in Dynamics 365 v9.0"},"content":{"rendered":"<h2><strong>Introduction:<\/strong><\/h2>\n<p style=\"text-align: justify;\">As we all know the new release of Dynamics 365 i.e v9.0 has come up with many new features. Along with these features Microsoft also introduced below new web resources for Dynamics CRM.<\/p>\n<ol style=\"text-align: justify;\">\n<li>Vector Format (SVG)<\/li>\n<li>String (RESX)<\/li>\n<\/ol>\n<p style=\"text-align: justify;\">In this blog, we are going to check how to work with web resource type \u201cString (RESX)\u201d. The main purpose of this web resource type is to support language-specific translation. Where developers can skip traditional way of doing translation by maintaining translation in JavaScript JSON or by maintaining separate entities for translation and others. And language specific resource makes it easy to maintain.<\/p>\n<p style=\"text-align: justify;\">Below are the steps to use web resource<\/p>\n<p style=\"text-align: justify;\"><strong>1. <\/strong>Create RESX web resource :<\/p>\n<p style=\"text-align: justify;\">To create RESX web resource, Developers needs to create RESX file first. There are two ways for it.<\/p>\n<p style=\"padding-left: 30px; text-align: justify;\"><strong>a<\/strong>. First, Add \u201cResource File\u201d in your Visual Studio project as below,<\/p>\n<p><img decoding=\"async\" class=\"aligncenter  wp-image-11921\" src=\"https:\/\/www.inogic.com\/blog\/wp-content\/uploads\/2018\/06\/Working-with-String-RESX-web-resource-in-Dynamics-365-v9.0.png\" alt=\"Working with String (RESX) web resource in Dynamics 365 v9.0\" width=\"827\" height=\"207\" \/><\/p>\n<p>Then update data in same as shown in the below screenshot.<\/p>\n<p><img decoding=\"async\" class=\"aligncenter  wp-image-11922\" src=\"https:\/\/www.inogic.com\/blog\/wp-content\/uploads\/2018\/06\/Working-with-String-RESX-web-resource-in-Dynamics-365-v9.01.png\" alt=\"Working with String (RESX) web resource in Dynamics 365 v9.0\" width=\"823\" height=\"129\" \/><\/p>\n<p style=\"padding-left: 30px;\"><strong>b<\/strong>. Secondly, you can create XML with below syntax and rename the file extension to RESX.<\/p>\n<p><img decoding=\"async\" class=\"aligncenter size-full wp-image-11923\" src=\"https:\/\/www.inogic.com\/blog\/wp-content\/uploads\/2018\/06\/Working-with-String-RESX-web-resource-in-Dynamics-365-v9.02.png\" alt=\"Working with String (RESX) web resource in Dynamics 365 v9.0\" width=\"402\" height=\"182\" \/><\/p>\n<p style=\"text-align: justify;\">Once you created a file, create webresource in CRM for the same. Make sure to select the language for the resource this makes it language specific. If you don\u2019t specify the language it will be accessible in other languages as well. We can use this feature for translation of default language, in case there is no language specific translation available.<\/p>\n<blockquote>\n<p style=\"text-align: justify;\"><em>Note: Creating WebResource for default language doesn\u2019t assure default language translation. CRM does the task of verifying login user language and web resource language.<\/em><\/p>\n<\/blockquote>\n<p style=\"text-align: justify;\">\n<p style=\"text-align: justify;\"><strong>2. <\/strong>Add Dependent resource<strong>:<\/strong><\/p>\n<p>Next we need to add \u201cRESX\u201d web resource in dependencies tab of JavaScript web resource as shown in the below screenshot.<\/p>\n<p><img decoding=\"async\" class=\"aligncenter size-full wp-image-11924\" src=\"https:\/\/www.inogic.com\/blog\/wp-content\/uploads\/2018\/06\/Working-with-String-RESX-web-resource-in-Dynamics-365-v9.03.png\" alt=\"Working with String (RESX) web resource in Dynamics 365 v9.0\" width=\"582\" height=\"233\" \/><strong>3. <\/strong>Call resource from your JavaScript :<\/p>\n<p>You need to retrieve values from \u201cRESX\u201d web resource using below function.<\/p>\n<p><img decoding=\"async\" class=\"aligncenter size-full wp-image-11925\" src=\"https:\/\/www.inogic.com\/blog\/wp-content\/uploads\/2018\/06\/Working-with-String-RESX-web-resource-in-Dynamics-365-v9.04.png\" alt=\"Working with String (RESX) web resource in Dynamics 365 v9.0\" width=\"479\" height=\"81\" \/><\/p>\n<p>Here the first parameter is the name of the CRM Webresource and the second parameter is Name of from the RESX file as shown in the below screenshot.<\/p>\n<p><img decoding=\"async\" class=\"aligncenter  wp-image-11926\" src=\"https:\/\/www.inogic.com\/blog\/wp-content\/uploads\/2018\/06\/Working-with-String-RESX-web-resource-in-Dynamics-365-v9.05.png\" alt=\"Working with String (RESX) web resource in Dynamics 365 v9.0\" width=\"821\" height=\"149\" \/><\/p>\n<p>We have displayed same in a onload script and below result we get.<\/p>\n<p><img decoding=\"async\" class=\"aligncenter size-full wp-image-11927\" src=\"https:\/\/www.inogic.com\/blog\/wp-content\/uploads\/2018\/06\/Working-with-String-RESX-web-resource-in-Dynamics-365-v9.06.png\" alt=\"Working with String (RESX) web resource in Dynamics 365 v9.0\" width=\"517\" height=\"188\" \/><\/p>\n<h2><strong>Conclusion:<\/strong><\/h2>\n<p style=\"text-align: justify;\">RESX web resource helps the user in language specific translation. Using this, developers can skip traditional way of doing translation and do it easily using simple steps above.<\/p>\n<p style=\"text-align: justify;\"><a href=\"https:\/\/www.inogic.com\/product\/productivity-pack\/click-2-export-microsoft-dynamics-crm-reports\" target=\"_blank\" rel=\"noopener noreferrer\"><img decoding=\"async\" class=\"aligncenter  wp-image-10864\" src=\"https:\/\/www.inogic.com\/blog\/wp-content\/uploads\/2017\/12\/Click2Export-banner.png\" alt=\"Export Dynamics CRM Reports\" width=\"824\" height=\"206\" \/><\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction: As we all know the new release of Dynamics 365 i.e v9.0 has come up with many new features. Along with these features Microsoft also introduced below new web resources for Dynamics CRM. Vector Format (SVG) String (RESX) In this blog, we are going to check how to work with web resource type \u201cString\u2026 <span class=\"read-more\"><a href=\"https:\/\/www.inogic.com\/blog\/2018\/06\/working-with-string-resx-web-resource-in-dynamics-365-v9-0\/\">Read More: Working with String (RESX) web resource in Dynamics 365 v9.0 &raquo;<\/a><\/span><\/p>\n","protected":false},"author":13,"featured_media":11928,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[16,18,19,66],"tags":[1462,1463,1830,1831],"class_list":["post-11920","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-dynamics-365","category-dynamics-365-v9-2","category-dynamics-crm","category-web-resources-2","tag-resx","tag-resx-web-resource-in-dynamics-365-v9-0","tag-web-resource-in-dynamics-365","tag-web-resource-in-dynamics-365-v9-0"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.8 - aioseo.com -->\n\t<meta name=\"description\" content=\"Introduction: As we all know the new release of Dynamics 365 i.e v9.0 has come up with many new features. Along with these features Microsoft also introduced below new web resources for Dynamics CRM. Vector Format (SVG) String (RESX) In this blog, we are going to check how to work with web resource type \u201cString\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Inogic\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.inogic.com\/blog\/2018\/06\/working-with-string-resx-web-resource-in-dynamics-365-v9-0\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.8\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Microsoft Dynamics 365 CRM Tips and Tricks - By Inogic\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Working with String (RESX) web resource in Dynamics 365 v9.0 - Microsoft Dynamics 365 CRM Tips and Tricks\" \/>\n\t\t<meta property=\"og:description\" content=\"Introduction: As we all know the new release of Dynamics 365 i.e v9.0 has come up with many new features. Along with these features Microsoft also introduced below new web resources for Dynamics CRM. Vector Format (SVG) String (RESX) In this blog, we are going to check how to work with web resource type \u201cString\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.inogic.com\/blog\/2018\/06\/working-with-string-resx-web-resource-in-dynamics-365-v9-0\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/www.inogic.com\/blog\/wp-content\/uploads\/2018\/06\/Working-with-String-RESX-web-resource-in-Dynamics-365-v9.0.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/www.inogic.com\/blog\/wp-content\/uploads\/2018\/06\/Working-with-String-RESX-web-resource-in-Dynamics-365-v9.0.png\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2018-06-08T11:42:59+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2018-06-08T11:42:59+00:00\" \/>\n\t\t<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/inogicindia\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@inogic\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Working with String (RESX) web resource in Dynamics 365 v9.0 - Microsoft Dynamics 365 CRM Tips and Tricks\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Introduction: As we all know the new release of Dynamics 365 i.e v9.0 has come up with many new features. Along with these features Microsoft also introduced below new web resources for Dynamics CRM. Vector Format (SVG) String (RESX) In this blog, we are going to check how to work with web resource type \u201cString\" \/>\n\t\t<meta name=\"twitter:creator\" content=\"@inogic\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/www.inogic.com\/blog\/wp-content\/uploads\/2018\/06\/Working-with-String-RESX-web-resource-in-Dynamics-365-v9.0.png\" \/>\n\t\t<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t\t<meta name=\"twitter:data1\" content=\"Inogic\" \/>\n\t\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2018\\\/06\\\/working-with-string-resx-web-resource-in-dynamics-365-v9-0\\\/#blogposting\",\"name\":\"Working with String (RESX) web resource in Dynamics 365 v9.0 - Microsoft Dynamics 365 CRM Tips and Tricks\",\"headline\":\"Working with String (RESX) web resource in Dynamics 365 v9.0\",\"author\":{\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/author\\\/inogic-2\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/06\\\/Working-With-RESX-webresoure-1-1.png\",\"width\":150,\"height\":150,\"caption\":\"Working With RESX webresoure\"},\"datePublished\":\"2018-06-08T17:12:59+05:30\",\"dateModified\":\"2018-06-08T17:12:59+05:30\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2018\\\/06\\\/working-with-string-resx-web-resource-in-dynamics-365-v9-0\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2018\\\/06\\\/working-with-string-resx-web-resource-in-dynamics-365-v9-0\\\/#webpage\"},\"articleSection\":\"Dynamics 365, Dynamics 365 v9, Dynamics CRM, Web Resources, RESX, RESX web resource in Dynamics 365 v9.0, web resource in Dynamics 365, web resource in Dynamics 365 v9.0\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2018\\\/06\\\/working-with-string-resx-web-resource-in-dynamics-365-v9-0\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.inogic.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/category\\\/dynamics-365\\\/#listItem\",\"name\":\"Dynamics 365\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/category\\\/dynamics-365\\\/#listItem\",\"position\":2,\"name\":\"Dynamics 365\",\"item\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/category\\\/dynamics-365\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2018\\\/06\\\/working-with-string-resx-web-resource-in-dynamics-365-v9-0\\\/#listItem\",\"name\":\"Working with String (RESX) web resource in Dynamics 365 v9.0\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2018\\\/06\\\/working-with-string-resx-web-resource-in-dynamics-365-v9-0\\\/#listItem\",\"position\":3,\"name\":\"Working with String (RESX) web resource in Dynamics 365 v9.0\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/category\\\/dynamics-365\\\/#listItem\",\"name\":\"Dynamics 365\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/#organization\",\"name\":\"Microsoft Dynamics 365 CRM Tips and Tricks\",\"description\":\"By Inogic\",\"url\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/02\\\/inogic-logo.png\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2018\\\/06\\\/working-with-string-resx-web-resource-in-dynamics-365-v9-0\\\/#organizationLogo\",\"width\":1000,\"height\":325,\"caption\":\"inogic logo\"},\"image\":{\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2018\\\/06\\\/working-with-string-resx-web-resource-in-dynamics-365-v9-0\\\/#organizationLogo\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/inogicindia\",\"https:\\\/\\\/twitter.com\\\/inogic\",\"https:\\\/\\\/www.instagram.com\\\/inogicindia\\\/\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCM4V7ousgLSu1hbOEv4DUuQ\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/inogicindia\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/author\\\/inogic-2\\\/#author\",\"url\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/author\\\/inogic-2\\\/\",\"name\":\"Inogic\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2018\\\/06\\\/working-with-string-resx-web-resource-in-dynamics-365-v9-0\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/839d9ae7d2b941d2d09e91df322267a429821f2ce5494302b53bd5ca3679f1a0?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Inogic\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2018\\\/06\\\/working-with-string-resx-web-resource-in-dynamics-365-v9-0\\\/#webpage\",\"url\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2018\\\/06\\\/working-with-string-resx-web-resource-in-dynamics-365-v9-0\\\/\",\"name\":\"Working with String (RESX) web resource in Dynamics 365 v9.0 - Microsoft Dynamics 365 CRM Tips and Tricks\",\"description\":\"Introduction: As we all know the new release of Dynamics 365 i.e v9.0 has come up with many new features. Along with these features Microsoft also introduced below new web resources for Dynamics CRM. Vector Format (SVG) String (RESX) In this blog, we are going to check how to work with web resource type \\u201cString\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2018\\\/06\\\/working-with-string-resx-web-resource-in-dynamics-365-v9-0\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/author\\\/inogic-2\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/author\\\/inogic-2\\\/#author\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/06\\\/Working-With-RESX-webresoure-1-1.png\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2018\\\/06\\\/working-with-string-resx-web-resource-in-dynamics-365-v9-0\\\/#mainImage\",\"width\":150,\"height\":150,\"caption\":\"Working With RESX webresoure\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2018\\\/06\\\/working-with-string-resx-web-resource-in-dynamics-365-v9-0\\\/#mainImage\"},\"datePublished\":\"2018-06-08T17:12:59+05:30\",\"dateModified\":\"2018-06-08T17:12:59+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/\",\"name\":\"Microsoft Dynamics 365 CRM Tips and Tricks\",\"alternateName\":\"Inogic\",\"description\":\"By Inogic\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Working with String (RESX) web resource in Dynamics 365 v9.0 - Microsoft Dynamics 365 CRM Tips and Tricks","description":"Introduction: As we all know the new release of Dynamics 365 i.e v9.0 has come up with many new features. Along with these features Microsoft also introduced below new web resources for Dynamics CRM. Vector Format (SVG) String (RESX) In this blog, we are going to check how to work with web resource type \u201cString","canonical_url":"https:\/\/www.inogic.com\/blog\/2018\/06\/working-with-string-resx-web-resource-in-dynamics-365-v9-0\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/www.inogic.com\/blog\/2018\/06\/working-with-string-resx-web-resource-in-dynamics-365-v9-0\/#blogposting","name":"Working with String (RESX) web resource in Dynamics 365 v9.0 - Microsoft Dynamics 365 CRM Tips and Tricks","headline":"Working with String (RESX) web resource in Dynamics 365 v9.0","author":{"@id":"https:\/\/www.inogic.com\/blog\/author\/inogic-2\/#author"},"publisher":{"@id":"https:\/\/www.inogic.com\/blog\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/www.inogic.com\/blog\/wp-content\/uploads\/2018\/06\/Working-With-RESX-webresoure-1-1.png","width":150,"height":150,"caption":"Working With RESX webresoure"},"datePublished":"2018-06-08T17:12:59+05:30","dateModified":"2018-06-08T17:12:59+05:30","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/www.inogic.com\/blog\/2018\/06\/working-with-string-resx-web-resource-in-dynamics-365-v9-0\/#webpage"},"isPartOf":{"@id":"https:\/\/www.inogic.com\/blog\/2018\/06\/working-with-string-resx-web-resource-in-dynamics-365-v9-0\/#webpage"},"articleSection":"Dynamics 365, Dynamics 365 v9, Dynamics CRM, Web Resources, RESX, RESX web resource in Dynamics 365 v9.0, web resource in Dynamics 365, web resource in Dynamics 365 v9.0"},{"@type":"BreadcrumbList","@id":"https:\/\/www.inogic.com\/blog\/2018\/06\/working-with-string-resx-web-resource-in-dynamics-365-v9-0\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.inogic.com\/blog#listItem","position":1,"name":"Home","item":"https:\/\/www.inogic.com\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/www.inogic.com\/blog\/category\/dynamics-365\/#listItem","name":"Dynamics 365"}},{"@type":"ListItem","@id":"https:\/\/www.inogic.com\/blog\/category\/dynamics-365\/#listItem","position":2,"name":"Dynamics 365","item":"https:\/\/www.inogic.com\/blog\/category\/dynamics-365\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.inogic.com\/blog\/2018\/06\/working-with-string-resx-web-resource-in-dynamics-365-v9-0\/#listItem","name":"Working with String (RESX) web resource in Dynamics 365 v9.0"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.inogic.com\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.inogic.com\/blog\/2018\/06\/working-with-string-resx-web-resource-in-dynamics-365-v9-0\/#listItem","position":3,"name":"Working with String (RESX) web resource in Dynamics 365 v9.0","previousItem":{"@type":"ListItem","@id":"https:\/\/www.inogic.com\/blog\/category\/dynamics-365\/#listItem","name":"Dynamics 365"}}]},{"@type":"Organization","@id":"https:\/\/www.inogic.com\/blog\/#organization","name":"Microsoft Dynamics 365 CRM Tips and Tricks","description":"By Inogic","url":"https:\/\/www.inogic.com\/blog\/","logo":{"@type":"ImageObject","url":"https:\/\/www.inogic.com\/blog\/wp-content\/uploads\/2023\/02\/inogic-logo.png","@id":"https:\/\/www.inogic.com\/blog\/2018\/06\/working-with-string-resx-web-resource-in-dynamics-365-v9-0\/#organizationLogo","width":1000,"height":325,"caption":"inogic logo"},"image":{"@id":"https:\/\/www.inogic.com\/blog\/2018\/06\/working-with-string-resx-web-resource-in-dynamics-365-v9-0\/#organizationLogo"},"sameAs":["https:\/\/www.facebook.com\/inogicindia","https:\/\/twitter.com\/inogic","https:\/\/www.instagram.com\/inogicindia\/","https:\/\/www.youtube.com\/channel\/UCM4V7ousgLSu1hbOEv4DUuQ","https:\/\/www.linkedin.com\/company\/inogicindia"]},{"@type":"Person","@id":"https:\/\/www.inogic.com\/blog\/author\/inogic-2\/#author","url":"https:\/\/www.inogic.com\/blog\/author\/inogic-2\/","name":"Inogic","image":{"@type":"ImageObject","@id":"https:\/\/www.inogic.com\/blog\/2018\/06\/working-with-string-resx-web-resource-in-dynamics-365-v9-0\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/839d9ae7d2b941d2d09e91df322267a429821f2ce5494302b53bd5ca3679f1a0?s=96&d=mm&r=g","width":96,"height":96,"caption":"Inogic"}},{"@type":"WebPage","@id":"https:\/\/www.inogic.com\/blog\/2018\/06\/working-with-string-resx-web-resource-in-dynamics-365-v9-0\/#webpage","url":"https:\/\/www.inogic.com\/blog\/2018\/06\/working-with-string-resx-web-resource-in-dynamics-365-v9-0\/","name":"Working with String (RESX) web resource in Dynamics 365 v9.0 - Microsoft Dynamics 365 CRM Tips and Tricks","description":"Introduction: As we all know the new release of Dynamics 365 i.e v9.0 has come up with many new features. Along with these features Microsoft also introduced below new web resources for Dynamics CRM. Vector Format (SVG) String (RESX) In this blog, we are going to check how to work with web resource type \u201cString","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.inogic.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/www.inogic.com\/blog\/2018\/06\/working-with-string-resx-web-resource-in-dynamics-365-v9-0\/#breadcrumblist"},"author":{"@id":"https:\/\/www.inogic.com\/blog\/author\/inogic-2\/#author"},"creator":{"@id":"https:\/\/www.inogic.com\/blog\/author\/inogic-2\/#author"},"image":{"@type":"ImageObject","url":"https:\/\/www.inogic.com\/blog\/wp-content\/uploads\/2018\/06\/Working-With-RESX-webresoure-1-1.png","@id":"https:\/\/www.inogic.com\/blog\/2018\/06\/working-with-string-resx-web-resource-in-dynamics-365-v9-0\/#mainImage","width":150,"height":150,"caption":"Working With RESX webresoure"},"primaryImageOfPage":{"@id":"https:\/\/www.inogic.com\/blog\/2018\/06\/working-with-string-resx-web-resource-in-dynamics-365-v9-0\/#mainImage"},"datePublished":"2018-06-08T17:12:59+05:30","dateModified":"2018-06-08T17:12:59+05:30"},{"@type":"WebSite","@id":"https:\/\/www.inogic.com\/blog\/#website","url":"https:\/\/www.inogic.com\/blog\/","name":"Microsoft Dynamics 365 CRM Tips and Tricks","alternateName":"Inogic","description":"By Inogic","inLanguage":"en-US","publisher":{"@id":"https:\/\/www.inogic.com\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"Microsoft Dynamics 365 CRM Tips and Tricks - By Inogic","og:type":"article","og:title":"Working with String (RESX) web resource in Dynamics 365 v9.0 - Microsoft Dynamics 365 CRM Tips and Tricks","og:description":"Introduction: As we all know the new release of Dynamics 365 i.e v9.0 has come up with many new features. Along with these features Microsoft also introduced below new web resources for Dynamics CRM. Vector Format (SVG) String (RESX) In this blog, we are going to check how to work with web resource type \u201cString","og:url":"https:\/\/www.inogic.com\/blog\/2018\/06\/working-with-string-resx-web-resource-in-dynamics-365-v9-0\/","og:image":"https:\/\/www.inogic.com\/blog\/wp-content\/uploads\/2018\/06\/Working-with-String-RESX-web-resource-in-Dynamics-365-v9.0.png","og:image:secure_url":"https:\/\/www.inogic.com\/blog\/wp-content\/uploads\/2018\/06\/Working-with-String-RESX-web-resource-in-Dynamics-365-v9.0.png","article:published_time":"2018-06-08T11:42:59+00:00","article:modified_time":"2018-06-08T11:42:59+00:00","article:publisher":"https:\/\/www.facebook.com\/inogicindia","twitter:card":"summary_large_image","twitter:site":"@inogic","twitter:title":"Working with String (RESX) web resource in Dynamics 365 v9.0 - Microsoft Dynamics 365 CRM Tips and Tricks","twitter:description":"Introduction: As we all know the new release of Dynamics 365 i.e v9.0 has come up with many new features. Along with these features Microsoft also introduced below new web resources for Dynamics CRM. Vector Format (SVG) String (RESX) In this blog, we are going to check how to work with web resource type \u201cString","twitter:creator":"@inogic","twitter:image":"https:\/\/www.inogic.com\/blog\/wp-content\/uploads\/2018\/06\/Working-with-String-RESX-web-resource-in-Dynamics-365-v9.0.png","twitter:label1":"Written by","twitter:data1":"Inogic","twitter:label2":"Est. reading time","twitter:data2":"2 minutes"},"aioseo_meta_data":{"post_id":"11920","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2023-02-02 06:52:34","updated":"2025-07-04 04:16:47","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.inogic.com\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.inogic.com\/blog\/category\/dynamics-365\/\" title=\"Dynamics 365\">Dynamics 365<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tWorking with String (RESX) web resource in Dynamics 365 v9.0\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.inogic.com\/blog"},{"label":"Dynamics 365","link":"https:\/\/www.inogic.com\/blog\/category\/dynamics-365\/"},{"label":"Working with String (RESX) web resource in Dynamics 365 v9.0","link":"https:\/\/www.inogic.com\/blog\/2018\/06\/working-with-string-resx-web-resource-in-dynamics-365-v9-0\/"}],"_links":{"self":[{"href":"https:\/\/www.inogic.com\/blog\/wp-json\/wp\/v2\/posts\/11920","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.inogic.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.inogic.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.inogic.com\/blog\/wp-json\/wp\/v2\/users\/13"}],"replies":[{"embeddable":true,"href":"https:\/\/www.inogic.com\/blog\/wp-json\/wp\/v2\/comments?post=11920"}],"version-history":[{"count":0,"href":"https:\/\/www.inogic.com\/blog\/wp-json\/wp\/v2\/posts\/11920\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.inogic.com\/blog\/wp-json\/wp\/v2\/media\/11928"}],"wp:attachment":[{"href":"https:\/\/www.inogic.com\/blog\/wp-json\/wp\/v2\/media?parent=11920"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inogic.com\/blog\/wp-json\/wp\/v2\/categories?post=11920"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inogic.com\/blog\/wp-json\/wp\/v2\/tags?post=11920"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}