"; }}/* * 分析: 由一周为一个轮回。
如果刚好有偶数个周,数组高大于宽,则有$col/2次轮回,若宽大于高则 有$row/2个轮回。 如果未奇数个周,则有$len/2+1个周。 */function
Printarrayincircle($arr) { $col = count...
分类:
其他好文 时间:
2014-05-10 08:10:37
阅读次数:
285
public Point TranslatePoint( Point point, UIElement
relativeTo)private void OnMouseLeftButtonDown(object sender,
MouseButtonEventArgs e){ // Retrieve ...
分类:
其他好文 时间:
2014-05-10 08:09:34
阅读次数:
225
Function cuttextlen(intext, lens)
If Len(intext)
cuttextlen = intext
Else
tmptext = intext
GetTexts = ""
Do While Not Len(tmptext)
GetTexts = GetTexts + Left(tmptext, lens)
tmptext = Right...
分类:
其他好文 时间:
2014-05-09 22:22:08
阅读次数:
320
前几天要写一个东西里面有用到读文件的。
可是我不想用FSO,我怕有的空间不支持。
可是网络上找了半天没有找到一个不是用FSO写的。
还是自己做了一个。
我记得以前在做无组件上传,并保存文件的时候有用到stream
我发现有一个LoadFromFile的方法。可以读取文件。
下面是我的代码。
function readfile(URL,chartype)
set srmObj...
分类:
其他好文 时间:
2014-05-09 22:15:49
阅读次数:
277
获取api的时候,获取回来的特殊对象
$eBayTime = $responseDoc->getElementsByTagName('Timestamp');
object(DOMNodeList) $eBayTime
这种对象,取长度 $eBayTime->length
取值 $eBayTime->item(0)
取值的对象是 object(DOMElement) $eBay...
分类:
其他好文 时间:
2014-05-09 22:07:07
阅读次数:
288
在ASP.NET使用javascript的一点小技巧
我们在进行ASP.NET开发时,经常会用到一些javascript脚本,比如:
private void Button1_Click(object sender, System.EventArgs e)
{
Response.Write( "alert('OK');") ;
}
经常是重复的书写这些脚本,如果我们能做成一个相...
分类:
编程语言 时间:
2014-05-09 21:12:11
阅读次数:
268
错误原因:
如API中所述
API:
A table of data representing a database result set, which is usually generated by executing a statement that queries the database. A
ResultSet object maintains a cursor pointi...
分类:
数据库 时间:
2014-05-09 21:00:43
阅读次数:
423
如何获得 Windows 操作系统的版本
很多时候我们需要知道Windows操作系统的版本,使用下面这个API函数可以做到。
Option Explicit
Private Declare Function GetVersionEx Lib "kernel32" Alias "GetVersionExA" (lpVersionInformation As OSVERSIONINFO) As ...
var wait = 60; function time(o) { if (wait == 0) {
$(o).attr("disabled", false); $(o).val("获取验证码"); wait = 60; ...
分类:
Web程序 时间:
2014-05-09 19:25:41
阅读次数:
569
再来看一个选择li列表的例子:点击li中的任意项,被点击的li高亮显示: 6.3css类和样式
{{restaurant.name}}{{restaurant.food}}{{restaurant.price}} function Restauran...
分类:
Web程序 时间:
2014-05-09 19:25:15
阅读次数:
447