Year: 2010

  • Difference between Sandbox and developer edition in Salesforce

    Explains the basic difference in Sandbox and developer edition of Salesforce

  • Create Cron job to run PHP Script in Cpanel

    Hi All, Today i just want to share that how to create  a cron job in Cpanel to run the PHP script. I hope everyone knows that what is Cron job : it is the task schedule in Linux which will run on predefined time interval. its same concept like schedule tasks in Windows OS.…

  • Applying the Support Packs in SAP System

    SUPPORT PACKS:-  Support Packs provides enhanced functionality, Bug fixes, changes to the existing Data Dictionary Elements, Repository objects like programs, reports, transactions etc.  Support Packs are of various types. Few of them are:  Basis Support Packages (SAP KB 62050) ABAP Support Packages (SAP KA 62050) Application Support Packages (SAP KH 47050) HR Support Packages (SAP…

  • Dos command to close and open port

    Dos command to close and open port in Windows XP, Windows 7 and Windows Server

  • How to Install java on Ubuntu 10 and Ubuntu 11

    Run below command on the terminal of ubuntu to install the JAVA. Ubuntu 10 : Ubuntu 11:

  • Get Mouse Position in JavaScript for all browsers

      To use above function, just pass the mouse event. Live Demo

  • Why Style.left does not work in Firefox, chrome and safari ?

    During working on one of my project, i found that style.left does not work with Mozilla, chrome and safari but nicely works on internet explorer. The code was : And the simple solution is, append “px” at the end to work with other browsers. and final code is: Very Simple right ? 🙂

  • DataGrid Sorting and Paging Example – Part 2

    For Part 1, visit This URL https://jitendrazaa.com/blog/?p=191 In this part, i will show that how to Sort the Datagrid Component of ASP.NET. To sort Datagrid, we will need DataView and then assign Dataview as datasource to our Grid control. We will need to change our code of Part 1. Previously, we used DataSet as a Datasource.…

  • DataGrid Example – Part 1

    For the basics of DataGrid please refer this post: https://jitendrazaa.com/blog/?p=188 In this example, i will explain the basics of DataGrid control like Theming, Databinding etc. We will start our example with creating the SQL Express database of Employee which will contain the following fields : Id, FName, LName, Email. Now create a stored procedure to…

  • ASP.NET DataGrid basic questions

    What is datagrid? The DataGrid Web server control is a powerful tool for displaying information from a data source. It is easy to use; you can display editable data in a professional-looking grid by setting only a few properties. At the same time, the grid has a sophisticated object model that provides you with great…