mscrm v9 Archives - Microsoft Dynamics 365 Blog http://microsoftdynamics.in/category/mscrm-v9/ Microsoft Dynamics CRM . Microsoft Power Platform Thu, 09 Jul 2020 09:48:46 +0000 en-US hourly 1 https://wordpress.org/?v=6.6.1 https://i0.wp.com/microsoftdynamics.in/wp-content/uploads/2020/04/cropped-Microsoftdynamics365-blogs.png?fit=32%2C32 mscrm v9 Archives - Microsoft Dynamics 365 Blog http://microsoftdynamics.in/category/mscrm-v9/ 32 32 176351444 Get Parameter from URL in C# http://microsoftdynamics.in/2018/01/15/get-parameter-from-url-in-c/ Mon, 15 Jan 2018 10:09:00 +0000 Get Query from URL and then get Parameter as required .       string URLT = "localhost:2081/page.aspx?CaseID=662BB71D-CFF9-E711-90CD-00155DD3F14C";            Uri uri = new Uri(URLT);            var query = HttpUtility.ParseQueryString(uri.Query);            var param1 = query.Get("CaseID");            Guid CaseGUID = new...

The post Get Parameter from URL in C# appeared first on Microsoft Dynamics 365 Blog.

]]>
Get Query from URL and then get Parameter as required .



      string URLT = "localhost:2081/page.aspx?CaseID=662BB71D-CFF9-E711-90CD-00155DD3F14C";

            Uri uri = new Uri(URLT);

            var query = HttpUtility.ParseQueryString(uri.Query);

            var param1 = query.Get("CaseID");

            Guid CaseGUID = new Guid(param1);



SOURCE : mscrm.com

The post Get Parameter from URL in C# appeared first on Microsoft Dynamics 365 Blog.

]]>
2750
Download SDK for Microsoft Dynamics 365 V9 – Get Plugin Registration tool and assemblies from NuGet Packages for Dynamics 365 , v9.0 http://microsoftdynamics.in/2018/01/14/download-sdk-for-microsoft-dynamics-365-v9-get-plugin-registration-tool-and-assemblies-from-nuget-packages-for-dynamics-365-v9-0/ Sun, 14 Jan 2018 06:50:00 +0000 With the release of Dynamics 365 (online), version 9.0, there are a lot of changes in our developer documentation:
New location: https://docs.microsoft.com/dynamics365/customer-engagement/developer/
New name: Developer Guide
No more monolithic SDK download
Separation and fusion of reference content
Client API documentation overhaul
Detailed entity documentation
No more monolithic SDK download : Getting the assemblies and tools you need
SDK assemblies and tools will be distributed only via NuGet. We will provide a script that will allow you to download the assemblies and tools from NuGet.

You can follow below steps to download Nuget Packages using Visual studio

Step 1 Right Click on to your visual studio project and click on to manage NuGet Packages

The post Download SDK for Microsoft Dynamics 365 V9 – Get Plugin Registration tool and assemblies from NuGet Packages for Dynamics 365 , v9.0 appeared first on Microsoft Dynamics 365 Blog.

]]>
With the release of Dynamics 365 (online), version 9.0, there are a lot of changes in our developer documentation:
No more monolithic SDK download : Getting the assemblies and tools you need
SDK assemblies and tools will be distributed only via NuGet. We will provide a script that will allow you to download the assemblies and tools from NuGet.
 
You can follow below steps to download Nuget Packages using Visual studio
 
Step 1 Right Click on to your visual studio project and click on to manage NuGet Packages

Step 2 Search for “Microsoft.CrmSdk.XrmTooling.PluginRegistrationTool” and click on install

Click on I accept

Step 3 Navigate to the package directory of that project

Step 4 Search the folder Microsoft.CrmSdk.XrmTooling.PluginRegistrationTool.X.0.0.X

Done!! now you will be having your latest Plugin registration Tool

Sample PRT Reference for quick start  : Microsoft.CrmSdk.XrmTooling.PluginRegistrationTool.9.0.0.7

In the same way you can download any of the NuGet assemblies and tools

Hope it helps !!

Happy CRMing

SOURCE : mscrm.com

The post Download SDK for Microsoft Dynamics 365 V9 – Get Plugin Registration tool and assemblies from NuGet Packages for Dynamics 365 , v9.0 appeared first on Microsoft Dynamics 365 Blog.

]]>
2752