中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

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

哈巴河县| 韶山市| 大同县| 巴青县| 克拉玛依市| 敖汉旗| 封丘县| 大邑县| 昌宁县| 江安县| 云梦县| 汪清县| 涿州市| 镇宁| 华阴市| 龙州县| 南靖县| 彰化县| 绥德县| 鄂托克前旗| 永善县| 科技| 微山县| 永福县| 涞水县| 张家港市| 苍溪县| 泸水县| 库尔勒市| 扬中市| 宁安市| 曲阜市| 万宁市| 双峰县| 辉县市| 安吉县| 武乡县| 喀喇沁旗| 南皮县| 拉萨市| 团风县|