From the course: Blazor WebAssembly: Foundational Skills

Unlock the full course today

Join today to access over 23,200 courses taught by industry experts.

Publish to Windows IIS

Publish to Windows IIS

- [Teacher] The published files can be used to run the app for a web server. IIS is a popular web server used on Windows machines. With a standalone Blazor WebAssembly app, the client makes a request to the web server. From there, it gets the published files for the Blazor WebAssembly app and returns them to the browser. The browser then downloads the application to be used by the client. It's a similar story with a hosted Blazor WebAssembly app. The client makes a request to the web server, afterwards, it gets the published files for the Blazor WebAssembly app and returns it to the client. However, if there are server side requests, the browser will make separate calls to the web server. The web server will call the ASP.NET Core web app and return the response to the application. Before the apps can run from a web server the IIS web server needs to be installed. Do a search for control panel. Go to Programs and…

Contents