YUI Developer
YUI Developer

Reputation: 385

Hosting ASP.NET Web Forms as a Windows Azure Web Site

I have a traditional ASP.NET Web Forms application. I would like to host the application in Windows Azure. Is it possible for me to publish a Web Forms app as a Web Site in Windows Azure? If so, does anyone have any docs? I can't seem to find any.

Thank you.

Upvotes: 7

Views: 8152

Answers (3)

Wahid Bitar
Wahid Bitar

Reputation: 14084

This is new article because the link in accepted answer has been changed

another example

Upvotes: 2

Dan Csharpster
Dan Csharpster

Reputation: 2732

@JYL's answer covers most of it, but also realize that WebForms apps are big on server side Session State. If you plan to scale out your web app, then you are going to need an external session state provider. This article explains how you can do this with Redis Cache or SQL Server

Upvotes: 0

JYL
JYL

Reputation: 8319

Of course it's possible. Here is a great official tutorial : https://www.windowsazure.com/en-us/develop/net/tutorials/web-site-with-sql-database

EDIT:

In my case I use Team Foundation Service to auto-deploy to Azure. It works great !

Upvotes: 2

Related Questions