Skip to contentSkip to navigationSkip to topbar
Rate this page:
On this page

How to set up your C# and ASP.NET MVC development environment


In this guide, we'll cover how to set up your ASP.NET development environment for an MVC project. We'll also talk about a couple of helpful tools that we recommend for all C# applications that use Twilio: ngrok(link takes you to an external page) and the Twilio C# SDK(link takes you to an external page).

Let's get started!

(warning)

Warning

This tutorial is intended for Visual Studio on Windows with .NET Framework. For a cross-platform tutorial using .NET Core, please check out our Programmable SMS Quickstart for C# with .NET Core.


Install the .NET Framework and an IDE

install-the-net-framework-and-an-ide page anchor

For Windows, we recommend using Visual Studio Community Edition(link takes you to an external page), which is a free IDE provided by Microsoft. It will install all the necessary components as well as the .NET Framework. You can also follow along with this tutorial using Visual Studio Professional or Enterprise.


Create a simple ASP.NET MVC application

create-a-simple-aspnet-mvc-application page anchor

First, let's create a simple ASP.NET MVC project. Visual Studio can create everything for you in a few simple clicks.

  1. In the Menu click File > New > Project
  2. This will open a dialog, in the Templates for Visual C# choose ASP.NET Web Application (.NET Framework)
  3. At the bottom enter the name for the project such as WebApplicationTwilio and click Ok
  4. In the next dialog select MVC , uncheck the box Host in Azure and click Ok
create web project with VS.

Now you should have a fully set up ASP.NET MVC project ready to go. You can click in the menu bar on Debug > Start Debugging (or press F5) it will automatically build, run the application and open your web browser to it. (Don't forget to stop the debugging before the next step).


Using Twilio C# SDK in an ASP.NET MVC Project

using-twilio-c-sdk-in-an-aspnet-mvc-project page anchor

Now we will add the Twilio C# SDK and show a simple example of how to use it with an MVC project.

  1. In the Solution Explorer right click on your Solution and select Manage NuGet Packages for Solution
  2. This will open a new tab showing you the installed packages of your Solution. Click on Browse
  3. Select Twilio by Twilio, on the right-hand pane check the box for your project choose the latest version and click Install
  4. Repeat this for the Twilio.AspNet.Mvc package by Twilio

The next step will be to modify the HomeController which handles what the application returns when you first connect to it. Right now it returns a basic HTML webpage, we will change that to return some TwiML.

Replace the content of Controllers\HomeController.cs with the following


_16
using System.Web.Mvc;
_16
using Twilio.AspNet.Mvc;
_16
using Twilio.TwiML;
_16
_16
namespace WebApplicationTwilio.Controllers
_16
{
_16
public class HomeController : TwilioController
_16
{
_16
public ActionResult Index()
_16
{
_16
var response = new VoiceResponse();
_16
response.Say("hello world");
_16
return TwiML(response);
_16
}
_16
}
_16
}

And that's it. You can press F5 and you should see a page displaying


_10
<Response>
_10
<Say>hello world</Say>
_10
</Response>


Installing and using ngrok

installing-and-using-ngrok page anchor

Now that you have a simple "Hello World!" in TwiML, your development environment is ready to go. But for most Twilio projects you'll want to install one more helpful tool: ngrok(link takes you to an external page).

Most Twilio services use webhooks to communicate with your application. When Twilio receives an incoming phone call, for example, it reaches out to a URL in your application for instructions on how to handle the call.

When you're working on your application in your development environment, your app is only reachable by other programs on the same computer, so Twilio won't be able to talk to it.

ngrok is our favorite tool for solving this problem. Once started, it provides a unique URL on the ngrok.io domain which will forward incoming requests to your local development environment.

To start, head over to the ngrok download page(link takes you to an external page) and grab the binary for your operating system. (For more details on installing ngrok, read our ngrok guide.)

Once downloaded, run your ASP.NET MVC application and take note of the URL in the browser to find the port number your application is running on:

browser address bar showing port number 5678.

Once you have the port number, start ngrok using this command:


_10
./ngrok.exe http -host-header="localhost:5678" 5678

Where 5678 is the port number. You should see output similar to this:

ngrok screen.

Look at the "Forwarding" line to see your unique ngrok domain name (ours is "aaf29606.ngrok.io") and then point your browser to that domain name.

If everything's working correctly, you should see your "Hello World!" message displayed at your new ngrok URL.

Any time you're working on your Twilio application and need a URL for a webhook you should use ngrok to get a publicly accessible URL like this one.


Configuring a webhook on Twilio

configuring-a-webhook-on-twilio page anchor

For the final step, head up towards the phone number section in Twilio's console(link takes you to an external page).

  1. Set the "Configure with" to Voice Webhook/TwiML
  2. Fill in your ngrok URL
  3. At the bottom click on the Save button
Twilio console.

That's it, you can take your phone and call your Twilio Number, and you should hear your "Hello World!"


You're now ready to build out your ASP.NET MVC application. Here are a few other resources we like:

Twilio

twilio page anchor

Rate this page: