# asp.net 后台学习深入版 **Repository Path**: 1160/asp.net_backend-learning-advanced ## Basic Information - **Project Name**: asp.net 后台学习深入版 - **Description**: 从这里开始学习 https://www.bilibili.com/video/BV1ws4y1F7bN/?p=40&spm_id_from=333.788.top_right_bar_window_history.content.click&vd_source=59fab4ae7f7b6462cea577f55587fe78 - **Primary Language**: C# - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-12-28 - **Last Updated**: 2024-01-10 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # asp.net 后台学习深入版 #### 介绍 从这里开始学习 https://www.bilibili.com/video/BV1ws4y1F7bN/?p=40&spm_id_from=333.788.top_right_bar_window_history.content.click&vd_source=59fab4ae7f7b6462cea577f55587fe78 ### 启动方式 - [011.ASPNETCORE6多种启动方式](https://www.bilibili.com/video/BV1ws4y1F7bN/?p=45&spm_id_from=pageDriver&vd_source=59fab4ae7f7b6462cea577f55587fe78) - bin目录中找到:*.dll - 运行命令:`dotnet *.dll --urls=http://localhost:1001` - 这个方法会造成css/js文件丢失。 - 解决方法是用 `dotnet run --urls=http://localhost:1001` 。这个命令行会从根目录中加载css文件。