Authorjuilee.joshi

Closures in c#

C

What are closures? To put it very simply, closures allow you to encapsulate some behaviour, pass it around like any other object, and still have access to the context in which they were first declared. This allows you to separate out control structures, logical operators etc from the details of how they’re going to be used. The ability to access the original context is what separates...

Integrating Force.com with Microsoft .NET

I

Methodologies and Delivery Platforms As with other code bases written in .NET, an integrated Force.com application can be tailored to run on any .NET support platform. The Microsoft .NET Framework is included with all major Microsoft operating systems, desktop and server, as well as Microsoft’s 3 major application platforms: SQL Server, Internet Information Services, and SharePoint Services...

JIT compiler in c#

J

In the .NET Framework, all the Microsoft .NET languages use a Common Language Runtime, which solves the problem of installing separate runtimes for each of the programming languages. When the Microsoft .NET Common Language Runtime is installed on a computer then it can run any language that is Microsoft .NET compatible. Before the Microsoft Intermediate Language (MSIL) can be executed, it must be...

.NET Vs. Salesforce

.NET Salesforce Security 1. Need to decide among several ways to apply security model. 2. Overhead of custom programming. 1. Integrated security model provided by SalesForce. 2. No additional overhead of security programming & review. User Interface 1. No ready support, entire design will have to be developed from scratch for both backend & frontend. 1. Advanced User Interface and...

Joomla article publishing error solved

J

While using Joomla 3 for creating some articles I was getting Lock Table error in SQL and the articles were not getting posted on server.  There was no error on localhost though. This error was not a joomla template specific I guess. It was occurring for other templates as well. But I found solution to this error as follows: Access the template folder of that particular website through FTP. Right...

How to disable login form in Joomla CMS

H

This is the process for disabling any form on a web page using Joomla CMS. We can take login form for example. The steps are as follows:
1. Go to back end of Joomla website that is the administrator page
2. Go to extensions -> Module manager
3. Search for the required module
4. Unpublish it.

Common Language Runtime in C#

C

The Common Language Runtime (CLR) is the virtual machine component of Microsoft’s .NET framework and is responsible for managing the execution of .NET programs. In a process known as Just-in-time compilation, the compiled code is converted into machine instructions  that, in turn, are executed by the computer’s CPU. The CLR provides additional services including memory management...

How to add a custom button to contact in salesforce

H

Open you salesforce developer’s account: Go to Setup->Customize->Contacts->Buttons and Links-> Custom Buttons 1. Create custom button 2. Create a tab corresponding to the page and custom button 3. Check out the parameter id in button link or url Sample code for custom button on contact page: Task: I’d like a custom button written for Salesforce which I could install on the...

How to send email through salesforce apex?

H

  Class Code: public class clsTest { public Boolean emailSent { get; set; } public void sendMail(string email){ Messaging.SingleEmailMessage mailHandler = new Messaging.SingleEmailMessage(); String[] emailRecipient = new String[]{email}; //set the recipient mailHandler.setToAddresses(emailRecipient); //set the reply email address mailHandler.setReplyTo('juilee.joshi@nanostuffs.com');...

Category