您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關asp.net core項目中使用html文件的方法,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
前言
在asp.net core 項目中,使用html文件一般通過使用中間件來提供服務:
打開 NuGet程序管理控制臺
輸入install-package Microsoft.aspnetcore.staticfiles
進行添加
ASP.NET Core static files middleware. Includes middleware for serving static files, directory browsing, and default files
.
在Startup.cs中使用服務:
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.AspNetCore.Http; using Microsoft.Extensions.DependencyInjection; namespace MyWeb { public class Startup { // This method gets called by the runtime. Use this method to add services to the container. // For more information on how to configure your application, visit https://go.microsoft.com/fwlink/?LinkID=398940 public void ConfigureServices(IServiceCollection services) { services.AddMvc(); } // This method gets called by the runtime. Use this method to configure the HTTP request pipeline. public void Configure(IApplicationBuilder app, IHostingEnvironment env) { app.UseStaticFiles(); app.UseMvc(); } } }
在wwwroot下添加Baidu.html
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>Baidu</title> </head> <body> <a href="http://www.baidu.com" target="_self"><em>進入百度</em></a> </body> </html>
修改Index.cshtml,添加訪問鏈接
@page @model MyWeb.Pages.IndexModel @{ ViewData["Title"] = "Index"; } <h3>Index</h3> <a href="Index2">Index2</a> <a href="Baidu.html" target="_self">Baidu</a> <hr /> <a href="Customers">CustomersIndex</a> <h2>Hello, world!</h2> <h3>The time on the server is @DateTime.Now</h3>
運行MyWeb在Index首頁進行訪問
或者輸入地址http://localhost:端口號/Baidu.html
關于“asp.net core項目中使用html文件的方法”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。