1. 打开新的窗口并传送参数:
传送参数:response.write("<script>window.open(’*.aspx?id="+this.DropDownList1.SelectIndex+"&id1="+...+"’)</script>")
接收参数:string a = Reque....
分类:
其他好文 时间:
2014-04-29 22:53:14
阅读次数:
571
不同于c++等语言的调用操作系统的线程调控机制来实现多线程,java语言内置了多线程的api包,因此可以更加方便的使用多线程技术。(1)线程的问题。进程是程序的一次动态执行过程,它对应了从代码加载、执行至执行完毕的一个完整过程,这个过程也是进程本身从产生、发展至消亡的过程。线程是比进程更小的单位,一...
分类:
编程语言 时间:
2014-04-29 22:09:12
阅读次数:
689
1、理解socket1)、Socket接口是TCP/IP网络的应用程序接口(API)。Socket接口定义了许多函数和例程,程序员可以用它们来开发TCP/IP网络应用程序。Socket可以看成是网络通信上的一个端点,也就是说,网络通信包括两台主机或两个进程,通过网络传递它们之间的数据。为了进行网络通...
分类:
Web程序 时间:
2014-04-29 20:21:27
阅读次数:
666
After having installed Ubuntu OS, you should
update config file for root account. The commands are listed as follow:vi
/etc/lightdm/lightdm.conf #open...
分类:
其他好文 时间:
2014-04-29 19:21:56
阅读次数:
555
ahk 预加载声音:path = "C:\Windows\Media\Windows
Recycle.wav"command := "open " path " alias
AHK_PlayMe"DllCall("Winmm\mciSendString","str",command,"ptr",0,...
分类:
其他好文 时间:
2014-04-29 19:18:50
阅读次数:
424
Intrinsic Locks and Synchronization
Synchronization is built around an internal entity known as theintrinsic
lockormonitor lock. (The API specificati....
分类:
编程语言 时间:
2014-04-29 16:31:18
阅读次数:
668
When running InnoDB you are able to dig into
the engine internals, look at various gauges and counters, see past deadlocks
and the list of all open tr...
分类:
数据库 时间:
2014-04-29 15:41:04
阅读次数:
686
1、***Cmd上面的@APICommand里的responseObject关联对于的Response;2、在tomcatconf/command.properties.in添加新API的权限;3、为得到Cmd,都需要实现PluggableService接口的getCommands()方法,核心Cm...
1、最基本的弹出窗口代码其实代码非常简单:
因为这是一段javascripts代码,所以它们应该放在之间。是对一些版本低的浏览器起作用,在这些老浏览器中不会将标签中的代码作为文本显示出来。
window.open (page.html) 用于控制弹出新的窗口page.html,如果page.ht.....
分类:
Web程序 时间:
2014-04-29 10:22:47
阅读次数:
530
检测浏览器支持情况加入Canvas对角线 //取得Canvas元素及其绘图上下文 var canvas
= document.getElementById("diagonal"); var context = canvas.getContext("2d");
//用绝对坐标来创建一条路径 ...