WhyScriptComponentScriptComponent使我们具有在SSIS中使用.net自定义代码的功能,我们可以使用它达到以下的目的,或者说在ETL中有如下需要的时候我们应该考虑使用ScriptComponent:如果我们需要对数据做多重转换(比如在两个列上分别加上值然后求平均等),我们可以使用ScriptCo..
分类:
其他好文 时间:
2014-10-09 19:53:58
阅读次数:
231
shell 获取网关 以及修改ip 启用网卡#!/bin/bash#autho freefei#script is a init computer eth#data 2014 10 09 192.168.1.1netstats=$(netstat -r|grep default|cut -f 10....
分类:
其他好文 时间:
2014-10-09 17:53:47
阅读次数:
214
function loadScript(url,callback){ var script=document.createElement("script"); script.type="text/javascript"; if(script.readyState){ script....
分类:
编程语言 时间:
2014-10-09 15:06:03
阅读次数:
189
#! /bin/sh
# chkconfig: 2345 55 25
# Description: Startup script for nginx webserver on Debian. Place in /etc/init.d and
# run 'update-rc.d -f nginx defaults', or use the appropriate command on your
#...
分类:
其他好文 时间:
2014-10-09 14:36:04
阅读次数:
322
C#处理json文件主要有两种方式: (1)使用JavaScriptSerializer类,需要引入System.Web.Extension库,并添加下面两个引用: using System.Web; using System.Web.Script.Serialization; 主要代码...
分类:
Web程序 时间:
2014-10-09 02:09:48
阅读次数:
250
背景:UIWebView: iOS 用来展示 web 端内容的控件。1. 核心方法:- (NSString*)stringByEvaluatingJavaScriptFromString:(NSString *)script;script 就是 JS 代码,返回结果为 js 执行结果。 比如一个 J...
分类:
移动开发 时间:
2014-10-09 00:39:57
阅读次数:
185
websocket已经不是什么新鲜的东西了,要在node.js上实现也有socket.io这样好用的第三方模块.但是个人有代码洁癖,实在是受不了在HTML页面上多出一行如下代码: ????<script?src=‘http://192.168.0.143:4000/so...
分类:
Web程序 时间:
2014-10-08 23:56:57
阅读次数:
291
<html>
<body>
<script type="text/javascript">
var ajax = null;
if(window.XMLHttpRequest){//创建Ajax对象
ajax = new XMLHttpRequest();
}else if(window.ActiveXObje...
分类:
Web程序 时间:
2014-10-08 23:04:37
阅读次数:
245
<divclass="date"><span><scripttype="text/javascript">document.write(newDate().getFullYear()+‘年‘+(newDate().getMonth()+1)+‘月‘+newDate().getDate()+‘日‘)</script></span><span><scripttype="text/javascript">document.wr..
分类:
Web程序 时间:
2014-10-08 02:01:35
阅读次数:
468
jquery执行全选/全不选的操作<scripttype="text/javascript">$(function(){$(‘#checkAll‘).click(function(){$(‘:checkbox‘).attr("checked",this.checked);});})</script>但是发现在1.10.0(其它版本未知),前两次都可以正常工作,但是第三次却不能。后面找到解..
分类:
Web程序 时间:
2014-10-07 21:19:54
阅读次数:
170