11 2017 档案

摘要:https://blog.bbzhh.com/index.php/archives/136.html 想在vps做个测试,看看是否25端口屏蔽是否生效,于是起了一个小web服务在25端口做测试,但是使用chrome访问时,提示: Error 312 (net::ERR_UNSAFE_PORT): U 阅读全文
posted @ 2017-11-28 10:58 LuoCore 阅读(1687) 评论(0) 推荐(0) 编辑
摘要:在web.Config文件中配置限制上传文件大小与时间的字符串是在<httpRuntime><httpRuntime/>节中完成。 maxRequsetLength 属性:用于防止服务攻击,例如,因用户向服务器发送大型文件而导致的拒接访问。默认值为4096kb(4M) ExecutionTimeou 阅读全文
posted @ 2017-11-26 20:24 LuoCore 阅读(249) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/jach/p/5709175.html form数据的序列化: jQuery的ajax方法: 原生的ajax方法: 阅读全文
posted @ 2017-11-23 18:32 LuoCore 阅读(144) 评论(0) 推荐(0) 编辑
摘要:String.Join 和 Distinct 方法 https://www.cnblogs.com/louby/p/6224960.html 1.在写程序中经常操作字符串,需要去重,以前我的用方式利用List集合和 contains去重复数据代码如下: 2.现在我推荐大家使用一下方式去重复数据 阅读全文
posted @ 2017-11-23 18:09 LuoCore 阅读(3983) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/vchenpeng/archive/2013/05/12/3074887.html /// <summary> /// 获取时间戳 /// </summary> /// <returns></returns> public static string 阅读全文
posted @ 2017-11-23 18:08 LuoCore 阅读(512) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/jyh_jack/article/details/17959821 阅读全文
posted @ 2017-11-22 16:19 LuoCore 阅读(233) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/surfing/p/3542826.html 首先我觉得action的跳转大致可以这样归一下类,跳转到同一控制器内的action和不同控制器内的action、带有参数的action跳转和不带参数的action跳转。 一、RedirectToAction 阅读全文
posted @ 2017-11-22 13:42 LuoCore 阅读(3217) 评论(0) 推荐(0) 编辑
摘要:http://qubernet.blog.163.com/blog/static/177947284201485104616368/ Razor中所有的Html都会自动编码,这样就不需要我们手动去编码了(安全),但在需要输出Html时就是已经转义过的Html文本了,如下所示: @{ string t 阅读全文
posted @ 2017-11-22 13:41 LuoCore 阅读(8430) 评论(0) 推荐(0) 编辑
摘要:https://zhidao.baidu.com/question/1733097469792964827.html 阅读全文
posted @ 2017-11-21 11:25 LuoCore 阅读(2564) 评论(0) 推荐(0) 编辑
摘要:0 前言 AspNet MVC中比较重要的上下文,有如下: 核心的上下文有HttpContext(请求上下文),ControllerContext(控制器上下文) 过滤器有关有五个的上下文ActionExecutingContext,ActionExecutedContext,ResultExecu 阅读全文
posted @ 2017-11-17 17:48 LuoCore 阅读(529) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/hohoa/p/5839993.html 阅读全文
posted @ 2017-11-16 23:45 LuoCore 阅读(1605) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/loongsking/article/details/53224473 function btn_submit() { var data = null; var trList = $("#forecastBillcode tbody").children(" 阅读全文
posted @ 2017-11-16 20:06 LuoCore 阅读(871) 评论(0) 推荐(0) 编辑
摘要:truncate table pmw_Invoice 阅读全文
posted @ 2017-11-16 13:41 LuoCore 阅读(295) 评论(0) 推荐(0) 编辑
摘要:http://bbs.csdn.net/topics/350135010 参考 select * from a aa left join b bb on aa.id=bb.cid and bb.adddate=(select max(adddate) from b where cid=bb.cid) 阅读全文
posted @ 2017-11-15 18:10 LuoCore 阅读(10938) 评论(1) 推荐(0) 编辑
摘要:https://www.cnblogs.com/zhangkai2237/archive/2012/12/06/2806239.html 对于web开发人员来说,对用户输入的信息进行验证是一个重要但是繁琐的工作,而且很多开发者都会忽略。asp.net mvc3框架使用的是叫做“数据注解”(DataA 阅读全文
posted @ 2017-11-15 15:56 LuoCore 阅读(248) 评论(0) 推荐(0) 编辑
摘要:bcl是.netframework clr 的基础库corefx是.net core clr的基础库 阅读全文
posted @ 2017-11-15 14:42 LuoCore 阅读(459) 评论(0) 推荐(0) 编辑
摘要:只要把勾去掉就能查看变量的值了 阅读全文
posted @ 2017-11-15 13:04 LuoCore 阅读(1814) 评论(0) 推荐(0) 编辑
摘要:去掉勾 阅读全文
posted @ 2017-11-15 11:04 LuoCore 阅读(12278) 评论(1) 推荐(2) 编辑
摘要:http://blog.csdn.net/nidexuanzhe/article/details/8228832 说明:通常我们在做数据库交互时,并不一定要使用特定的SQL语句来更新数据,.NET Framwork为我们提供了自动更新的功能 [csharp] view plain copy publ 阅读全文
posted @ 2017-11-14 18:17 LuoCore 阅读(236) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/a312100321/article/details/25195311 问题:DataGridView绑定数据源之后,有一列需要用下拉框DataGridViewComboBoxCell显示,但是在处理DataGridViewComboBoxCell的下拉事件 阅读全文
posted @ 2017-11-13 18:35 LuoCore 阅读(9669) 评论(0) 推荐(0) 编辑
摘要:http://www.jb51.net/article/34820.htm \ 1、查找表中多余的重复记录,重复记录是根据单个字段(peopleId)来判断 复制代码 代码如下: select * from peoplewhere peopleId in (select peopleId from 阅读全文
posted @ 2017-11-10 16:09 LuoCore 阅读(280) 评论(0) 推荐(0) 编辑
摘要:select rtrim(姓)+ rtrim(名) as 姓名 from tb 阅读全文
posted @ 2017-11-10 09:48 LuoCore 阅读(341) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/wang8559422/article/details/42394839 data:'id='+data+'&val='+val 加&符 https://www.cnblogs.com/xlj227/p/6006799.html ajax data:{id: 阅读全文
posted @ 2017-11-09 10:11 LuoCore 阅读(12790) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/renzhenhuai/article/details/19569593 误区: 一直以为jquery获取select中option被选中的文本值,是这样写的: $("#s").text(); //获取所有option的文本值 实际上应该这样: $("#s 阅读全文
posted @ 2017-11-09 10:04 LuoCore 阅读(48151) 评论(0) 推荐(2) 编辑
摘要:http://blog.csdn.net/hezheqiang/article/details/51966511 我们在多线程中通常使用一个 C# 使用 CancellationTokenSource 终止线程 使用CancellationTokenSource对象需要与Task对象进行配合使用,T 阅读全文
posted @ 2017-11-08 11:04 LuoCore 阅读(2936) 评论(0) 推荐(1) 编辑
摘要:http://blog.csdn.net/zjx86320/article/details/42554259 以前使用WebForm变成时,下拉框传值只需直接在后台绑定代码就可以了。现在我们来看看在MVC中DropDownList是如果和接受从Controller传过来的值的。 第一种:使用Drop 阅读全文
posted @ 2017-11-08 10:55 LuoCore 阅读(885) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/github_35160620/article/details/52676416 如果你在使用新创建的 SQL Server 用户名和密码 对数据库进行连接的时候出现了下面的问题。阅读本篇博客可以帮助你解决这个问题。 出现问题的操作 先启动 SQL Serv 阅读全文
posted @ 2017-11-07 12:02 LuoCore 阅读(5337) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/xuexiaodong009/article/details/46998069 json作为作为一种最常用的数据,应用很广泛,在.net中如何把一个对象转化为json字符串呢? 主要有一下几种 1按照json的定义自己转化,难度很大,但很灵活。需要自己处理各 阅读全文
posted @ 2017-11-03 16:35 LuoCore 阅读(9148) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/lingxyd_0/article/details/43155039 一般情况下出现这样的问题是因为.dll文件不存在或者路径不正确。但今天我遇到的情况都不在这两个内。我确定.dll文件是存在的,路径也是正确的。但是程序死活都是“未能加载文件或程序集“xxx 阅读全文
posted @ 2017-11-03 15:27 LuoCore 阅读(2079) 评论(0) 推荐(0) 编辑