Create and Publish a website to Microsoft Azure
This tutorial will guide you through creating your first website on Microsoft Azure and using the Visual Studio Publish feature to push a site to the cloud.
Have a request for a video topic, just let us know.
Need help with software development or cloud computing? Contact us at
Azure looks different now so how to
Very beautiful
when i make the changes that you did in the video and publish again the website doesnt load again, instead this error shows up:
Server Error in '/' Application.
Runtime Error
Description:An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.
Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off".
<!– Web.Config Configuration File –>
<configuration>
<system.web>
<customErrors mode="Off"/>
</system.web
</configuration>
Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL.
<!– Web.Config Configuration File –>
<configuration>
<system.web>
<customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
</system.web>
</configuration>
How can i fix this?
This video is 2 yrs old, they changed "websites" to "app services"It's not an intuitive dashboard anymore…
How to deploy ASP NET MVC Application on Azure Cloud – Urdu/Hindi
https://www.youtube.com/watch?v=kIGD1KR-zys&t=41s
good book on Azure Web Apps
https://www.amazon.com/Quick-Dive-into-Azure-Apps-ebook/dp/B073WHT5N8/ref=sr_1_1?ie=UTF8&qid=1502381545&sr=8-1&keywords=quick+dive+into+azure
This works If I have a local database too?
I tried a demo with Azure about 4 months ago and it was as easy as this demo shows. I am trying again today and the interface has changed DRAMATICALLY. It was easy and intuitive before. It's a total nightmare now
if your subscription expires, will it also disable or erase your established site?
Bravísimo, este sí funciona
This interface is no long the look of Azure. They no longer just have a "website" option.
how can i bring my HTML and CSS code over to visual studio?? halp.
I love the into-music ^^
Very good! You save me kk. Thank you!
Good
Hey there.. !! This video was all about creating a first website…!! That is cool..!! Thanks..!! But what if I need to modify the content of that website in future. How to do that..!! Any tutorials on it..?? Please post the link..!!
Clear and concise. Thank you for this very helpful video.