Naveed Akhtar
Nothing will work unless you do -- Maya Angelou
-
Microsoft Dynamics CRM 2011 On Internet Explorer 11 (IE 11)
Well.. Today I am going to provide a fix for MS CRM end user / developers.
-
BUG or Functionality? Drop down selected item issue
Today, I am going to argue on an issue / functionality related to item collection and associated controls like drop down, radio button list, list box control, etc... Well, I am not sure if its a functionality/ limitation or a BUG, but its a quite irritating issue that i found and resolved in two complete days.
-
Microsoft Dynamics CRM 2011 / 4.0 Configuration in Case of Machine rename / CRM Database server change / Domain Controller Change
Dears, I had wierd issue while running MS CRM 2011 after I changed the machine name. I would like to share the configurations with you that I did for my case and hope that it will be helpful for you too.
-
Working with ASP.Net Webservice on Vista / Windows Server 2008 (IIS 7)
Working with Web services on Window 2003 Server (IIS 6) doesn't occured any effects when moving from windows XP.
-
Converting Data Table / Dataset Into JSON String
JSON (Java Script Object Notation), is a light weight, easily understandable to read and write string. It is also easily parse-able by machine.
-
ASP.Net Compilation and Merge Tool (Part 2 of 2)
Syntax
-
ASP.Net Compilation and Merge Tool (Part 1 of 2)
ASP.NET Compilation tool is used to compile an ASP.NET Web application either in same machine or to deploy on a target machine such as a production server. It helps application performance because end users do not encounter a delay on the first request to the application while the application is compiled on backend.
-
How to use Javascript using Server-side scripting
Hi.
This article is interesting for those who loves to use javascript, but with little server postbacks. I had some times issues related to validation or client redirection or other sorts. So i got this solution and i would like to share it with you.
Here I am presenting a scenario. I have a button, and OnClick of this button, i want to call java script function.On Server Side (.aspx.cs)
--------------------------
Write this code under Button_Click event or in any server event.
ClientScript.RegisterStartupScript(this.GetType(), "key", "SubmitConfirm();",true);
You can also pass server control, properties to the "SubmitConfirm();" function.