dynamicsdirectory.net
Dynamics CRM
http://www.dynamicsdirectory.net/categories/dynamics-crm.asp
Welcome to Dynamics Directory. Welcome to the Dynamics Business Directory, for companies and Microsoft partners active in Microsoft Dynamics! Dynamics Directory is organised by dicipline. The Directory is free to join and membership only takes a few moments. Your participation is appreciated! Featured Companies indicated by. 1 - 7 Pages:. Microsoft Office 365 is grabbing all the limelight at the moment. It indeed is a dream comes true! Office 365 offers anywhere access to familiar Office tools, along wit...
blogs.insightresults.com
Diffrence between Handler and Fn in Ext.Net component’s listener? | Insight Results Blogs
http://blogs.insightresults.com/diffrence-between-handler-and-fn-in-ext-net-components-listener
Turning Insights into Results. Diffrence between Handler and Fn in Ext.Net component’s listener? December 13, 2013. Hi, I am going to describe difference. Between Handler and Fn in any Ext . Net component control’s Listener. We already know we are using Listener for generating client side event in Ext . Net control. so. First we will see how it works. Ext:Button ID=”Button8″ runat=”server” Text=”Click”. Click Handler=” testFunction. 8221; Fn=” testFunction. Handler we can write js. Code directly and Ext .
blogs.insightresults.com
ASP.Net | Insight Results Blogs
http://blogs.insightresults.com/category/asp-net
Turning Insights into Results. Category Archives: ASP.Net. AES encryption in C# and decryption in JavaScript. August 15, 2014. To use AES encryption in C# we need to add a class file named “ClsCrypto.cs”. Here is the code for ClsCrypto class :. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51. Salt, iterations ). 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28. Creating the Vector Key.
blogs.insightresults.com
AES encryption in C# and decryption in JavaScript | Insight Results Blogs
http://blogs.insightresults.com/aes-encryption-in-c-and-decryption-in-javascript
Turning Insights into Results. AES encryption in C# and decryption in JavaScript. August 15, 2014. To use AES encryption in C# we need to add a class file named “ClsCrypto.cs”. Here is the code for ClsCrypto class :. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51. Salt, iterations ). In ClsCrypto method we have a parameter for “strPassword”, it will be same when we decrypt using javascript code. Salt, {.
blogs.insightresults.com
CRM JavaScripts | Insight Results Blogs
http://blogs.insightresults.com/useful-crm-javascripts
Turning Insights into Results. September 16, 2014. Get Server url in CRM. XrmPage.context.getServerUrl();. Get the Entity Name in CRM. XrmPage.data.entity.getEntityName();. Get the entityId in CRM. XrmPage.data.entity.getId();. Get Organization Name in CRM. XrmPage.context.getOrgUniqueName();. Get logged in User Id in CRM. XrmPage.context.getUserId();. Save a record in CRM. For saving a record. For save and close. For save and new. Close the form in CRM. XrmPage.ui.close();. Get the value from a CRM field.
blogs.insightresults.com
Statuscode | Insight Results Blogs
http://blogs.insightresults.com/tag/statuscode
Turning Insights into Results. Retrieve CRM 2013 State and Status Code using JavaScript. May 22, 2014. With the help of oData we can get the value of the statuscode field but not for the statecode field. While looking for the best possible way to get the statecode alongwith the statuscode in javascript came to know about the sdk.metadata.js sample code in SDK (sdk samplecode js soapforjscript soapforjscript scripts). 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17. Function GetEntityStateAndStatus (.
blogs.insightresults.com
SDK.Metadata | Insight Results Blogs
http://blogs.insightresults.com/tag/sdk-metadata
Turning Insights into Results. Tag Archives: SDK.Metadata. Retrieve CRM 2013 State and Status Code using JavaScript. May 22, 2014. With the help of oData we can get the value of the statuscode field but not for the statecode field. While looking for the best possible way to get the statecode alongwith the statuscode in javascript came to know about the sdk.metadata.js sample code in SDK (sdk samplecode js soapforjscript soapforjscript scripts). 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17.
blogs.insightresults.com
AES encryption, decryption | Insight Results Blogs
http://blogs.insightresults.com/using-aes-encryption-in-javascript-and-decryption-in-c
Turning Insights into Results. AES encryption in JavaScript and decryption in C#. August 12, 2014. We need to include aes.js and pbkdf2.js javascript files to use this code. These files can be downloaded from code.google.com/p/crypto-js. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24. Function EncryptData (. Creating the Vector Key. Encoding the Password in from UTF8 to byte array. Encoding the Salt in from UTF8 to byte array. Salt, {. PlainText, key128Bits1000Iterations, {. Iv, padding :.
blogs.insightresults.com
Ext.Net | Insight Results Blogs
http://blogs.insightresults.com/tag/ext-net
Turning Insights into Results. Tag Archives: Ext.Net. Diffrence between Handler and Fn in Ext.Net component’s listener? December 13, 2013. Hi, I am going to describe difference. Between Handler and Fn in any Ext . Net component control’s Listener. We already know we are using Listener for generating client side event in Ext . Net control. so. First we will see how it works. Ext:Button ID=”Button8″ runat=”server” Text=”Click”. Click Handler=” testFunction. 8221; Fn=” testFunction. Handler we can write js.
blogs.insightresults.com
Synchronously retrieve entity metadata | Insight Results Blogs
http://blogs.insightresults.com/synchronously-retrieve-entity-metadata
Turning Insights into Results. Synchronously retrieve entity metadata. October 10, 2014. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54. Http:/ schemas.microsoft.com/xrm/2011/Contracts/Services. Http:/ www.w3.org/2001/XMLSchema-instance. Http:/ schemas.microsoft.com/xrm/2011/Contracts. Http:/ schemas.datacontract.org/2004/07/System.Collections.Generic. Http:/ www.w3.org/2001/XMLSchema. Doc, / b:value.