在 asp.net 中遇到异常: System.ArgumentException: 无法找到字体“?”。 在 System.Drawing.FontFamily.GetGdipGenericSansSerif() 在 System.Drawing.FontFamily.CreateFontFami... ...
分类:
其他好文 时间:
2020-06-23 15:41:08
阅读次数:
83
ASP.NET's Data Storage Objects Introduction In this brief tutorial, we'll look at five different ASP.NET objects we can use to store data. Two of thes ...
分类:
Web程序 时间:
2020-06-23 15:18:44
阅读次数:
71
Session-State Modes ASP.NET session state supports several different storage options for session data. Each option is identified by a value in the Ses ...
分类:
其他好文 时间:
2020-06-23 10:28:23
阅读次数:
59
下面这篇微软官方文档,介绍了如何在ASP.NET Core中自定义中间件(middleware): Write custom ASP.NET Core middleware 其中注意这句话: Additional parameters for the constructor and Invoke/I ...
分类:
Web程序 时间:
2020-06-22 23:13:52
阅读次数:
68
ASP.Net Core3.1 使用QrCode生成二维码 部署到Linux报错 The type initializer for 'System.DrawingCore.GDIPlus' threw an exception;在Windows上运行功能正常 解决办法: centos上安装libgd ...
分类:
Web程序 时间:
2020-06-22 18:47:35
阅读次数:
94
RM通用权限管理系统框架源码代码不仅有非常好的阅读性,而且有完整的数据库字段文档说明,PowerDesigner数据库设计关系图都有、详细的使用文档说明 ...
分类:
Web程序 时间:
2020-06-22 15:00:42
阅读次数:
534
视图(View)用于展示模型(Model)数据。 view 常用的方式有引用母版页或者不引用母版页 @model IEnumerable<myfirstweb.models.Student> //@model声明controller传入的数据类型,传入的是一个可枚举类型 <html> <head> ...
分类:
Web程序 时间:
2020-06-22 14:44:29
阅读次数:
59
简单理解一下: 一、Apache服务器:它本身仅提供html静态页面的功能,不支持jsp、java servlet、asp等功能;多与其他服务器或插件一起协同工作; 二、Tomcat:对Apache服务器进行扩展,可以作为JSP和Servlet的容器,但是不支持EJB,性能稳定; 缺点:1. Tom ...
分类:
Web程序 时间:
2020-06-22 12:52:46
阅读次数:
60
首先,新建一个ASP.NET项目,然后添加新项“Web Service(.asmx)”,命名为MathService。向类中添加方法,注意:只有包含WebMethod特性的方法才可以作为Web服务进行远程访问。 public class MathService : System.Web.Servic ...
分类:
Web程序 时间:
2020-06-22 12:33:49
阅读次数:
71
0.前言 在《asp.net core 系列》之实战系列中,我们在之前的篇幅中对项目有了一个大概的认知,也搭建了一个基础的项目骨架。那么就让我们继续完善这个骨架,让它更加丰满。这一篇,我将带领小伙伴们一起实现用户管理功能。 1. 数据表 一般情况下,我们会把用户表和登录信息表放在两个表里。为什么会这 ...
分类:
Web程序 时间:
2020-06-21 20:15:00
阅读次数:
60