01 2018 档案

摘要: 阅读全文
posted @ 2018-01-31 22:06 LuoCore 阅读(103) 评论(0) 推荐(0) 编辑
摘要://第二个窗体 public delegate void DAddress(string address); public event DAddress ESignAddress; protected void SignAddress(string address) { ESignAddress(a 阅读全文
posted @ 2018-01-31 21:03 LuoCore 阅读(253) 评论(0) 推荐(0) 编辑
摘要:启动:net start mssqlserver 停止:net stop mssqlserver 阅读全文
posted @ 2018-01-31 20:25 LuoCore 阅读(2468) 评论(0) 推荐(0) 编辑
摘要:SP_Lock 阅读全文
posted @ 2018-01-31 16:57 LuoCore 阅读(118) 评论(0) 推荐(0) 编辑
摘要:ALTER proc [dbo].[SP_SQL](@ObjectName sysname) as set nocount on ; declare @Print nvarchar(max) @Print用nvarchar if exists(select 1 from syscomments wh 阅读全文
posted @ 2018-01-25 15:33 LuoCore 阅读(248) 评论(0) 推荐(0) 编辑
摘要:http://2sharings.com/2015/asp-net-mvc-5-custom-404-500-error-hanlde https://blog.csdn.net/yhyhyhy/article/details/51003683 ASP.NET MVC 5的开发中,服务器的各种错误[ 阅读全文
posted @ 2018-01-22 21:43 LuoCore 阅读(3034) 评论(0) 推荐(0) 编辑
摘要:http://bbs.csdn.net/topics/340184487 在此感谢 提供参考 CREATE TABLE ToPayFee ( Id INT IDENTITY(1,1) PRIMARY KEY, CountryID INT, MoneyStart DECIMAL(18,2) DEFAU 阅读全文
posted @ 2018-01-22 10:57 LuoCore 阅读(612) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/LuoEast/p/7886297.html 1.在写程序中经常操作字符串,需要去重,以前我的用方式利用List集合和 contains去重复数据代码如下: 2.现在我推荐大家使用一下方式去重复数据 阅读全文
posted @ 2018-01-19 09:54 LuoCore 阅读(401) 评论(0) 推荐(0) 编辑
摘要:byte[] Strbyte = Encoding.GetEncoding("big5").GetBytes(str); if (Strbyte.Length < len) { Strbyte = Encoding.GetEncoding("big5").GetBytes(str.PadRight( 阅读全文
posted @ 2018-01-16 18:57 LuoCore 阅读(4558) 评论(0) 推荐(0) 编辑
摘要:System.Diagnostics.Stopwatch stopwatch = new System.Diagnostics.Stopwatch(); stopwatch.Start(); stopwatch.Stop(); long mill = stopwatch.ElapsedMillise 阅读全文
posted @ 2018-01-15 10:51 LuoCore 阅读(148) 评论(0) 推荐(0) 编辑
摘要:今天闲来无事看到ORm的特性映射sql语句。我就想到datagridview也可以用这个来动态添加列。这样就不用每次都去界面上点开界面填列了。 代码简漏希望有人看到了能指点一二。 先定义好Datagridview要加载的列。 public class Model { [ColumnAttribute 阅读全文
posted @ 2018-01-06 14:17 LuoCore 阅读(805) 评论(3) 推荐(0) 编辑
摘要:http://www.jb51.net/article/72259.htm Datagridview添加列: ? 1 2 3 4 5 DataGridViewTextBoxColumn acCode = new DataGridViewTextBoxColumn(); acCode.Name = " 阅读全文
posted @ 2018-01-06 10:41 LuoCore 阅读(24235) 评论(1) 推荐(1) 编辑
摘要:https://www.cnblogs.com/iampkm/p/4048697.html 【部分视图】 ASP.NET MVC 里的部分视图,相当于 Web Form 里的 User Control。我们的页面往往会有许多重用的地方,可以进行封装重用。使用 部分视图 : 1. 可以简写代码。2. 阅读全文
posted @ 2018-01-02 20:03 LuoCore 阅读(226) 评论(0) 推荐(0) 编辑