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


点击下面,查看已改的方法,谢谢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:

iis6启用gzip

[不指定 2008/05/26 01:32 | by Else ]
在iis6启用压缩,网站,服务,前面两个打勾(http压缩)
最好,把临时目录设在别的地方,

文件名:MetaBase.xml

<IIsCompressionScheme  Location ="/LM/W3SVC/Filters/Compression/deflate"
    HcCompressionDll="%windir%\system32\inetsrv\gzip.dll"
    HcCreateFlags="0"
    HcDoDynamicCompression="TRUE"
    HcDoOnDemandCompression="TRUE"
    HcDoStaticCompression="FALSE"
    HcDynamicCompressionLevel="10"
    HcFileExtensions="htm
      html
      txt
      swf
      jpg
      gif"
    HcOnDemandCompLevel="10"
    HcPriority="1"
    HcScriptFileExtensions="asp
      dll
      exe
      aspx
      php
      js
      css"
  >
</IIsCompressionScheme>
<IIsCompressionScheme  Location ="/LM/W3SVC/Filters/Compression/gzip"
    HcCompressionDll="%windir%\system32\inetsrv\gzip.dll"
    HcCreateFlags="1"
    HcDoDynamicCompression="TRUE"
    HcDoOnDemandCompression="TRUE"
    HcDoStaticCompression="TRUE"
    HcDynamicCompressionLevel="10"
    HcFileExtensions="htm
      html
      txt
      swf
      jpg
      gif"
    HcOnDemandCompLevel="10"
    HcPriority="1"
    HcScriptFileExtensions="asp
      dll
      exe
      aspx
      php
      js
      css"
  >
</IIsCompressionScheme>

本来想把js 和css放到html那部分,测试的结果没有压缩成!
所以正确的结果应该放在下面的部分
Tags: , ,

mb_substr的應該用

[不指定 2008/05/25 23:08 | by Else ]
utf-8下,php對長度的截取
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<?php

mb_internal_encoding("UTF-8");  //這個一定要設,要不然就顯示"我們",你可以測試一下
$string = "我們還好了什麼和什麼";
$mystring = mb_substr($string,0,6);
echo $mystring;


?><br />
<?php
echo $string;
?>
Tags: ,

死不了

[不指定 2008/05/25 14:11 | by Else ]
分页: 15/109 第一页 上页 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 下页 最后页 [ 显示模式: 摘要 | 列表 ]