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
alexsummersalexsummers 

saving info to salesforce

Hi,

I'm a new user and I've made a custom object and a custom tab.

I've also made a webform using ASP.NET that will be my data entry for this tab.

Do you know how can I save the information I will enter in the webform to Salesforce?

Thank you in advance

DevAngelDevAngel

Hi Alex,

You will execute a create or update call (depends on if it is a new record or an old record that's been edited).  Prior to this, you will need to have authenticated to salesforce.com.  If your web page runs independently of salesforce.com (ie not a web link) you will need to build a login form to collect the username and password from the user to authenticate.  Once authenticated, you should store the SforceService instance in the session object so that it is available to other pages.

Have you tried any of the samples yet?

alexsummersalexsummers

Yes thanks DevAngel

I've tried the samples....very helpful