标签:
1、@Html.Raw():不对数据进行编码
js中字符串转数组 var array = str.split(‘,‘);
2、WdatePicker时间格式设置:<input type="text" class="form-control" id="friendendDate" name="friendendDate" value="" style="height:30px;width:150px" onfocus="WdatePicker({ startDate: ‘%y-%M-%d %H:%m:%s‘, dateFmt: ‘yyyy-MM-dd HH:mm:ss‘, alwaysUseStartDate: true })" />
3、压力测试:
var xmlHttp;
function createxmlHttpRequest() {
if (window.ActiveXObject) {
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
} else if (window.XMLHttpRequest) {
xmlHttp=new XMLHttpRequest();
}
4、当代码无法转换时间格式时,考虑改变服务器时间格式
user.talkingTime = Convert.ToDateTime(user.talkingTime.Value.ToString("yyyy-MM-dd HH:mm:ss"));
5、
标签:
原文地址:http://www.cnblogs.com/len0031/p/5764180.html