function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Scott0987Scott0987 

use asp on visualforce page

I have a page I am creating that will send some information to a seperate site.  The code to send the information to that site is written in asp.  Can I include asp on a visualforce page?

Best Answer chosen by Admin (Salesforce Developers) 
Cory CowgillCory Cowgill

No, you cannot do that as Force.com does not run ASP. Force.com runs Visualforce and Apex (Which are based on JEE).

 

What you can do is use one of the following Force.com technologies to accomplish communication between Force.com and other sites.

 

1. Force.com Canvas - http://wiki.developerforce.com/page/Force.com_Canvas

2. Javascript SOAP/REST API's

3. Embed iFrame in Visualforce Page (This is deprecated with Force.com Canvas)