摘要:
Talk is cheap,Show me the code. .cshtml let pdata = { "weight": 50, "origin": originSel.value, "destination": destinationSel.value }; let r = await ax 阅读全文
摘要:
Program.cs,注意顺序 builder.Services.AddSession(options =>{ options.IdleTimeout = TimeSpan.FromMinutes(30); options.Cookie.HttpOnly = true; options.Cookie 阅读全文
摘要:
1.下载地址 GIT下载: https://github.com/MicrosoftArchive/redis/releases 官方下载: https://redis.io/download/ 2.配置文件 redis.windows.conf 一般修改2个地方,端口号和密码 port requi 阅读全文
摘要:
(1)去GO官方下载安装软件 https://go.dev/doc/install(2)exe安装,安装目录可以设置在c:\\go(3)环境变量配置,主要是GOROOT、GOPATH,参考https://blog.csdn.net/weixin_48102095/article/details/12 阅读全文
摘要:
IIS8.0配置方式 IIS需要提前安装 AspNetCoreModuleV2 模块 官网下载 Hosting Bundle 应用程序池->"常规"->“启动模式”->"AlwaysRunning" 网站->"高级设置"->"预加载已启用" 阅读全文
摘要:
IIS需要先安装AspNetCoreModuleV2 web.config需要增加节点“ASPNETCORE_ENVIRONMENT” <aspNetCore processPath="dotnet" arguments=".\testweb.dll" stdoutLogEnabled="false 阅读全文
摘要:
1.dotnet run 项目根目录,但是需要一个项目文件(*.csproj)。 cd C:\Users\hp\Desktop\HW-3\FirstTestApp\FirstTestApp dotnet run 2.dotnet cd dll的目录下 I\bin\Debug\net6.0>dotne 阅读全文
摘要:
在 .Net Core Web的视图获取从后台传来的数据的时候,默认使用的是 UnicodeRanges.BasicLatin进行的编码,所以在前台显示中文,而在查看源码的时候,就会发现中文进行过编码操作 。 builder.Services.AddSingleton(HtmlEncoder.Cre 阅读全文
摘要:
#centos 安装.net6 https://learn.microsoft.com/zh-tw/dotnet/core/install/linux-centos 1.注册Microsoft密钥,安装.NET之前,需要注册Microsoft密钥,注册产品存储库并安装所需的依赖项 sudo rpm 阅读全文
摘要:
参考文档: razor路由: https://www.learnrazorpages.com/razor-pages/routing netcore 伪静态:https://learn.microsoft.com/zh-cn/aspnet/core/fundamentals/url-rewritin 阅读全文