Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
If you are not using Visual Studio Cloud Projects (where one cloud project and n-number of Web/Worker Role project(s)) and building simple WebSite, you may need this.
This is the connection string you need in your Web.Config file under ConnectionStrings
DefaultEndpointsProtocol=http;AccountName=[account_name];AccountKey=[account_key]
After which you need to initiate by doing
CloudStorageAccount csa = CloudStorageAccount.Parse(ConfigurationManager.ConnectionStrings["DataConnection"].ConnectionString);
Namoskar!!!