c#的dgv列值无法按改订的值输出[碰到高手,已改]
[
2008/06/03 11:27 | by Else ]
2008/06/03 11:27 | by Else ]
dw cs4 第二版安装上了
[
2008/06/02 09:45 | by Else ]
2008/06/02 09:45 | by Else ]
昨天在家里安装不上,现在安装上了,我也不知道是什么原因!
我在测试的时候发现,原来一个.net的项目,不能链接站点, 看来原来的.net的那文件应该要换一下了,希望开发出强大的功能!
以消我心头之恨!一个vs 一个dw 不方便!
我在测试的时候发现,原来一个.net的项目,不能链接站点, 看来原来的.net的那文件应该要换一下了,希望开发出强大的功能!
以消我心头之恨!一个vs 一个dw 不方便!
Adobe Dreamweaver Beta
[
2008/05/31 09:00 | by Else ]
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.
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 ]
2008/05/30 14:17 | by Else ]
一、 数论算法
1.求两数的最大公约数
2.求两数的最小公倍数
3.素数的求法
A.小范围内判断一个数是否为质数:
1.求两数的最大公约数
function gcd(a,b:integer):integer;
begin
if b=0 then gcd:=a
else gcd:=gcd (b,a mod b);
end ;
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;
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;
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;
現在第三天了,還沒有搞定,差兩個環節,
一是,頭文件,二是換位,
書到用時方恨少!
blog升級,一些小代碼升級!
一是,頭文件,二是換位,
書到用時方恨少!
blog升級,一些小代碼升級!
Ajax应用实例: asp+mdb数据库注册模块例子
[
2008/05/27 20:05 | by Else ]
2008/05/27 20:05 | by Else ]
OleDbType 枚举
[
2008/05/26 14:32 | by Else ]
2008/05/26 14:32 | by Else ]
iis6启用gzip
[
2008/05/26 01:32 | by Else ]
2008/05/26 01:32 | by Else ]
在iis6启用压缩,网站,服务,前面两个打勾(http压缩)
最好,把临时目录设在别的地方,
文件名:MetaBase.xml
本来想把js 和css放到html那部分,测试的结果没有压缩成!
所以正确的结果应该放在下面的部分
最好,把临时目录设在别的地方,
文件名: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>
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那部分,测试的结果没有压缩成!
所以正确的结果应该放在下面的部分
mb_substr的應該用
[
2008/05/25 23:08 | by Else ]
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;
?>
<?php
mb_internal_encoding("UTF-8"); //這個一定要設,要不然就顯示"我們",你可以測試一下
$string = "我們還好了什麼和什麼";
$mystring = mb_substr($string,0,6);
echo $mystring;
?><br />
<?php
echo $string;
?>





下载文件







