亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

asp.net core項目中使用html文件的方法

發布時間:2021-02-18 10:57:21 來源:億速云 閱讀:418 作者:小新 欄目:開發技術

這篇文章將為大家詳細講解有關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文件的方法”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

友谊县| 共和县| 北流市| 镇宁| 陇川县| 阿合奇县| 榕江县| 惠州市| 油尖旺区| 民权县| 南郑县| 兰考县| 平凉市| 阳东县| 子长县| 张家港市| 宜兰市| 鲜城| 福鼎市| 平阴县| 鹤庆县| 达孜县| 晋中市| 巨鹿县| 福建省| 寿宁县| 永清县| 公主岭市| 甘南县| 体育| 青川县| 汕头市| 吉水县| 明水县| 陈巴尔虎旗| 永和县| 四子王旗| 宕昌县| 长泰县| 唐海县| 博罗县|