分页: 14/108 第一页 上页 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 下页 最后页 [ 显示模式: 摘要 | 列表 ]

b2的歌

[不指定 2008/06/05 15:46 | by Else ]
1.型男索女  2.爱情速递  3.Go B2 Go  
4.Disco Dancing  5.青春Live  6.I Will Be Your F..  
7.Shoot You Down  8.因为我高兴  9.不爱一个人  
10.快速搜  11.要求太高  12.自己知自己事  
13.涉谷怪谈  14.冲红灯  15.失控  
16.心淡  17.错乱神经  18.娥世代  
19.放肆的爱  20.八挂  21.爱得不清醒  
22.虚拟爱情  23.火树银花  24.不要一个人  
25.快速搜画  
点击在新窗口中浏览此图片
听歌地址
http://mp3.sogou.com/sogou_phb/singer/detailSinger.jsp?singer=b2&w=02009900&dr=1
Tags:

xp多站点

[不指定 2008/06/04 09:13 | by Else ]
很多人在测试asp的时候,用的是xp系统
但随之而来的问题是,只能有一个网站,其它的是目录,显然,这又不适合现在的技术了,

现在有一个工具叫iisadmin 他可以让你的xp支持多站点,测试也好,做站也好,反正是很方便

下载地址:http://down.chinaz.com/soft/22988.htm
Tags: , , ,

新站:游戏站 图

[不指定 2008/06/03 13:21 | by Else ]
语言:php jquery
模式:et模板(php + et)
功能,游戏币 代练 装备 会员 订单
采用ajax的购物车方式!
图片:
Tags:


点击下面,查看已改的方法,谢谢csdn的朋友 白荷师傅

dw cs4 第二版安装上了

[不指定 2008/06/02 09:45 | by Else ]
昨天在家里安装不上,现在安装上了,我也不知道是什么原因!
我在测试的时候发现,原来一个.net的项目,不能链接站点, 看来原来的.net的那文件应该要换一下了,希望开发出强大的功能!
以消我心头之恨!一个vs 一个dw  不方便!
Tags: , ,

Adobe Dreamweaver Beta

[不指定 2008/05/31 09:00 | by Else ]
Adobe Dreamweaver Beta
Adobe® Dreamweaver® software is the ideal tool for web designers, coders, and application developers of all levels. Enhanced coding functions make it a breeze to navigate through complex site pages at design time. Improved layout tools bring expedited workflows, from comp conception to client approval. Innovations throughout the Dreamweaver beta can help teams and individual developers alike reach the next level in performance and functionality. Download the prerelease of the next version of Dreamweaver now and send us your feedback. The Dreamweaver beta will expire soon after the next version of Dreamweaver is available for purchase.

Important: This is a public beta, not a final release. Neither the quality nor the features are complete yet. We want to show you our direction and get your feedback so that we can incorporate it into future releases.

Terms of Use
Your use of Adobe Labs, including the downloading of software and submission of comments, ideas, feature requests, and techniques, and Adobe's rights to use such submitted materials are governed by the Adobe Labs Terms of Use and the Adobe Online Privacy Policy. By downloading, copying, or using Adobe software and related materials, you also agree to the appropriate Adobe Software License Agreement, including the limitations related to prerelease Software.

算法大全(C,C++)

[不指定 2008/05/30 14:17 | by Else ]
一、  数论算法

1.求两数的最大公约数

function gcd(a,b:integer):integer;
begin
if b=0 then gcd:=a
else gcd:=gcd (b,a mod b);
end ;


2.求两数的最小公倍数

function lcm(a,b:integer):integer;
begin
if a<b then swap(a,b);
lcm:=a;
while lcm mod b>0 do inc(lcm,a);
end;


3.素数的求法
A.小范围内判断一个数是否为质数:

function prime (n: integer): Boolean;
var I: integer;
begin
for I:=2 to trunc(sqrt(n)) do
if n mod I=0 then begin
prime:=false; exit;
end;
prime:=true;
end;

現在是第三天了

[不指定 2008/05/30 10:51 | by Else ]
現在第三天了,還沒有搞定,差兩個環節,

一是,頭文件,二是換位,

書到用時方恨少!

blog升級,一些小代碼升級!
演示页面,因为现在blog的空间是linux的,不支持这个asp,所以换成这个
http://www.cuku.net/demo/796/index.html

文件下载地址
下载文件
这个文件只能在登入之后下载。请先 注册登入
Tags:

OleDbType 枚举

[不指定 2008/05/26 14:32 | by Else ]
[quote]成员名称
说明


  
BigInt
64 位带符号的整数 (DBTYPE_I8)。它映射到 Int64。


  
Tags:
分页: 14/108 第一页 上页 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 下页 最后页 [ 显示模式: 摘要 | 列表 ]