User-691245060 posted
I have a working ASP website and database its using is already Public, so now i have problem how can i deploy it on Azure?
you have multiple options -
1. Create VMs and host your ASP.Net/ASP site there. Here you have complete control on deployment and components you want to install.
2. Create Cloud service projects and then attach your existing solution too it. You can then RDP into the roles after deployment and then host your ASP/ASP.NEt site in there.
3. Alternatively you can go for AzureWebsites, even in AzureWebsites you can host ASP.NEt or Classic ASP.
I would suggest you to first go and do some research on what are the available options for Web in Azure and make choices wisely. Of course check out billing too.
Thanks,