Where do I find the Azure Website Deployment password

If you are using azure deployment profiles for Visual Studio you can find the deployment password here:

Login to portal, select the web app service, click the link “Get publish profile” to download. Open the xml file and find the password in element publishProfile attribute userPWD.

Source: Where do I get my actual Azure Website Deployment password? – Stack Overflow

Session problems when setting up Azure Web App Service

I had a problem with a web app service on Azure, the session state was not functioning properly.

2 instances where running for the website and the Session affinity cookie was set to Off, that was the problem, ARR makes sure that the user stays on the correct webserver for the duration of the session.

I had to turn it ON, see link below for where to find it.

Disable Session affinity cookie (ARR cookie) for Azure web apps

Create Selenium Grid on Azure DevTest Labs VMs

Azure DevTest Labs is a way to easily spin up VMs being used as developer and test machines.

Here are a Microsoft ready made json template to spin up an Azure Selenium Grid (x number of Selenium node servers) allowing automated UI testing for web sites.

https://github.com/Azure/azure-devtestlab/tree/master/Samples/201-dtl-create-lab-with-seleniumgrid

Remote Debugging a Window Azure Web Site with Visual Studio 2013 – .NET Web Development and Tools Blog – Site Home – MSDN Blogs

Remote Debugging a Window Azure Web Site with Visual Studio 2013 – .NET Web Development and Tools Blog – Site Home – MSDN Blogs.