摘要:
POST /InStock HTTP/1.1Host: www.example.orgContent-Type: application/soap+xml; charset=utf-8Content-Length: nnn<?xml version="1.0"?><soap:Envelopexmlns:soap="http://www.w3.org/2001/12/soap-envelope"soap:encodingStyle="http://www.w3.org/2001/12/soap-encoding"> 阅读全文
摘要:
2.0 大量api变更/泛型/匿名方法/迭代器 同时推出VS20053.0 WPF/WCF/WF3.5 Linq/扩展方法/ASP.NET增强 同时推出VS2008 值得一提的是,此时C#为3.0,CLR为2.04.0 dynamic/可选参数方法/COM互操作性4.5 ...不是很懂 在12年8月推出的。 阅读全文
摘要:
1)为什么数组可以foreach遍历?因为数组可以按需提供一个叫做枚举数(enumerator)的对象。该对象实现了IEnumerator接口。提高一个层次说,所有被foreach遍历的对象实现了IEnumerable接口,在遍历时调用了该对象的GetEnumerator()反响。返回的是实现了 IEnumerator接口的对象。枚举的三种形式:IEnumerable/IEnumerator形式、IEnumerable<T>/IEnumerator<T>泛型形式,不使用接口也就是说,所有的数组默认实现了IEnemerator接口,包含三个方法 public object 阅读全文
摘要:
在给ipad 做推送的时候,推送模块需要很长时间。这个时候,用一个线程去处理这件事情,就可以让主模块走完不受影响。 阅读全文
摘要:
1、自然布局,即文档流布局。2、浮动布局。 一般用float:left。3、定位布局。用position:absolute和relative布局。用得不多。 阅读全文
摘要:
position:absoulte 跳出文档流。只有在设置了元素的TRBL属性的任何一个时,该属性才能被激活。 如果父元素没有设置该属性,则元素的偏移量是相对于整个屏幕的。如果设置了,则是相对于父元素的。 fixed 如果父元素没有设置该属性,则元素的偏移量是相对于整个屏幕的。如果设置了,则是相对于父元素的。 区别:fixed会被固定住。 relative:文档流位置仍然保留,向原文档流位置偏移。 clear:both的作用。使元素不受前面浮动元素的影响。如果不加,则保留原文档流位置;加上后,再起一行。 当有被包裹的div时,对里面的元素加上一个<div... 阅读全文
摘要:
1、resharper提示当参数为List时,可以改为IEnumerable<T>,因为:If you have a method whose parameter is an array, a List or some other type that implements IEnumerable<T>, ReSharper will offer you an option to change the parameter type accordingly – provided, of course, that the method itself only iterates 阅读全文
摘要:
Console.WriteLine(DateTime.Now.ToString()); Console.WriteLine(DateTime.Now.ToShortDateString()); Console.WriteLine(DateTime.Now.ToShortTimeString()); Console.WriteLine(DateTime.Now.ToLongDateString()); Console.WriteLine(DateTime.Now.ToLongTimeS... 阅读全文
摘要:
主视图: @Html.Partial("SeriesChartPartial", ViewBag.deviceEveyDayActivity as List<SeriesChartVM>)分布视图: @using Magmoud.Web.ViewModels@model List<SeriesChartVM>@(Html.Telerik().Chart(Model).Legend(false).Name("SingleChart") .Series(series => { ... 阅读全文
摘要:
为了请求一个地址http://localhost:62669/Report/Count/starttime=2012/11/1&endtime=2013/2/1&iosSelect=true&androidSelect=true&windowsSelecttrue我觉得没什么问题,但是报错:A potentially dangerous Request.Path value was detected from the client (&).我想问题肯定出在那些日期包含"/"的问题上,然后在js中花尽力气将其转为"-" 阅读全文