Reputation: 385
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
Reputation: 14084
This is new article because the link in accepted answer has been changed
Upvotes: 2
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
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