Integrate ASP.net web app with Parse.com

What is parse.com ?

Parse.com is a multi-platform technology which allows us to save our data on parse cloud both for mobile apps as well as for web apps. The various platform that are supported by Parse.com are iOS, Andriod, OS X, JavaScript, PHP, .Net and many more. Parse.com provide SDK for every platforms we have to only download that SDK and pass the reference of that SDK into our app.

How to get Started with Parse.com?

  1. First Step to start with Parse.com is to register on Parse.com.
  2. Log In with your details.
  3. After Log In click on Create New App button.
  4. When you click on Create app button Getting Started window will open which contains App keys as shown in figure below:-
  5. As you are working with Asp.net copy Application Id and .NET key

How to configure Asp.net application with Parse.com

  1. Add Global.asax file in your application.
  2. You can initialize your application in the Application_Start Event.
  3. You just had to implement the code in the Application_start event. Parse.ParseClient.Initialize(“App_Id”, “.NET_Key”);
  4. Now create an instance of ParseObject Class in your .cs file as below:

ParseObject gameScore = new ParseObject(“TABLE”);
gameScore[“COL”] = “TEMP”;
await gameScore.SaveAsync();