0
点赞
收藏
分享

微信扫一扫

html改cshtml方案

AbrahamW 2024-08-09 阅读 48

core:

core工程html->cshtml

html关联的文件

wwwroot文件夹下

css文件夹

css文件夹

js文件夹

js文件夹

fonts文件夹

fonts文件夹

images文件夹

images文件夹

后缀:.html->.cshtml

html文件头部添加:
@{
Layout = null;
}

href改动(绝大部分):例href="css/...->href="~/css/...

src改动(绝大部分):例src="js/....->src="~/js/...


举报

相关推荐

0 条评论