该文被密码保护。 阅读全文
随笔档案-2018年12月
MVC特性
2018-12-11 16:25 by Evan.Pei, 143 阅读, 收藏, 编辑
摘要:
https://www.cnblogs.com/dotnet261010/p/10909527.html MVC的一些特性,如下: BindAttribute(限制实体属性) RemoteAttribute(远程验证,需要页面使用jquery.validate.js和jquery.validate. 阅读全文
Excel To dataSet
2018-12-05 15:47 by Evan.Pei, 242 阅读, 收藏, 编辑
摘要:
private void button1_Click(object sender, EventArgs e) { OpenFileDialog file = new OpenFileDialog(); file.ShowDialog(); DataSet ds=ExcelToDS(file.FileName)... 阅读全文