|
|
用户名:seasun 笔名:seasun 地区: 台州人-在杭州 行业:本科 |
| 日 | 一 | 二 | 三 | 四 | 五 | 六 |
|
|
欢迎来到seasun的"三色草"博客世界,seasun的博客多为记录seasun的网路生活,其中内容大多以seasun感兴趣的话题为主,多为一些知识性及实用性比较强的文章,但基本上都采自网络,其中有没注明转贴的望见谅!博客只是给我们提供了多维世界中又一个个性化的窗口,望大家能够多多支持seasun所提供的窗口世界.
一些2008欧洲杯桌面壁纸资源/ EURO 2008 WALLPAPER
1. 一套精美的国旗壁纸, 16强, 16个国家, 16张壁纸. 下载地址.
2. 2008欧洲杯官方的一些Logo和图片壁纸. 下载地址

3. 几张比较有趣的2008欧洲杯壁纸, 卡通形象,球星, 球迷和国旗结合, 希望大家Enjoy EURO 2008. 只是, 这届欧洲杯, 黑马也太多了. 没有惊喜, 全是惊讶. 下载地址

其它一些2008欧洲杯壁纸资源链接:
端午节的粽子:透明flash
端午节快到了,喜欢吃粽子吗?想不想在你的和讯个人门户里,放上
几个漂亮的粽子,让来访的朋友,打开博客,就能闻到清甜的粽香,
这样,一方面,可以把你的博客变得有人情味,另一方面,还会给你
招来更多朋友,哈哈,爱美之心人皆有之嘛,下面就介绍几款“端午
节透明FLASH素材”,素材来源“中国flash在线”。 <EMBED style="LEFT: -40px; POSITION: absolute; TOP: -70px" src="http://flashline.go3.icpcn.com/dw/22.swf" width="1024" height="800" type="application/x-shockwave-flash" quality="high" wmode="transparent"></EMBED> 然后,看上图,把你喜欢的图片下面的代码,直接复制到HTML里, 点确定,就可以了。完了之后,再看看你的个人门户是不是显示出, 你想要显示的flash粽子啦,好看吧! 注:flash素材来源“中国flash在线”
<EMBED style="LEFT: -40px; POSITION: absolute; TOP: -70px" src="http://flashline.go3.icpcn.com/dw/29.swf" width="1024" height="700" type="application/x-shockwave-flash" quality="high" wmode="transparent"></EMBED>
<EMBED style="LEFT: -40px; POSITION: absolute; TOP: -70px" src="http://flashline.go3.icpcn.com/dw/18.swf" width="1024" height="1000" type="application/x-shockwave-flash" quality="high" wmode="transparent"></EMBED>
<EMBED style="LEFT: -40px; POSITION: absolute; TOP: -70px" src="http://flashline.go3.icpcn.com/dw/19.swf" width="1024" height="600" type="application/x-shockwave-flash" quality="high" wmode="transparent"></EMBED>
<EMBED style="LEFT: -40px; POSITION: absolute; TOP: -70px" src="http://flashline.go3.icpcn.com/dw/20.swf" width="1024" height="600" type="application/x-shockwave-flash" quality="high" wmode="transparent"></EMBED>
<EMBED style="LEFT: -40px; POSITION: absolute; TOP: -70px" src="http://flashline.go3.icpcn.com/dw/40.swf" width="1024" height="600" type="application/x-shockwave-flash" quality="high" wmode="transparent"></EMBED>
<EMBED style="LEFT: -40px; POSITION: absolute; TOP: -70px" src="http://flashline.go3.icpcn.com/dw/42.swf" width="1024" height="600" type="application/x-shockwave-flash" quality="high" wmode="transparent"></EMBED>
<EMBED style="LEFT: -40px; POSITION: absolute; TOP: -70px" src="http://flashline.go3.icpcn.com/dw/48.swf" width="1024" height="600" type="application/x-shockwave-flash" quality="high" wmode="transparent"></EMBED>
<EMBED style="LEFT: -40px; POSITION: absolute; TOP: -70px" src="http://flashline.go3.icpcn.com/dw/50.swf" width="1024" height="600" type="application/x-shockwave-flash" quality="high" wmode="transparent"></EMBED>
地震
目前国内10大欧美音乐博客







Javascript [class类]的所有创建方式
function createCar(){
var car = newObject();
car.color="b";
car.length=1;
car.run=function(){alert("run");}
return car;
}
var car1 = createCar();
var car2 = createCar();
function Car(){
this.color="b";
this.length=1;
this.run=function(){alert("run");}
}
var car1=newCar();
var car2=newCar();
function Car(){
}
Car.prototype.color="b";
Car.prototype.length=1;
Car.prototype.run=function(){alert("run");}
Car.prototype.data1=newArray();此时,car2.data也就包含了"a"元素
var car1=newCar();
var car2=newCar();
car1.data1.push("a");
function Car(){
this.color="b";
this.length=1;
this.data1=newArray();
}
Car.prototype.run=function(){
alert("dddd");
}
function Car(){
this.color="b";
this.length=1;
this.data1newArray();
if(typeof Car.initilize=="undefined"){
Car.prototype.run=function(){ alert("a"); }
}
Car.initilize=true;
}
person =newObject()
person.name = "Tim Scarfe"
person.height = "6Ft"
person.run =function(){
this.state = "running"
this.speed = "4ms^-1"
}
// Object Literals
timObject = {
property1 : "Hello",
property2 : "MmmMMm",
property3 : ["mmm", 2, 3, 6, "kkk"],
method1 :function(){
alert("Method had been called" + this.property1)
}
};
timObject.method1();
alert(timObject.property3[2])// will yield 3
var circle = { x : 0, y : 0, radius: 2 }// another example
// nesting is no problem.
var rectangle = {
upperLeft : { x : 2, y : 2 },
lowerRight : { x : 4, y : 4}
}
alert(rectangle.upperLeft.x)// will yield 2
function cat(name) {
this.name = name;
this.talk =function(){
alert( this.name + " say meeow!" )
}
}
cat1 =newcat("felix")
cat1.talk()//alerts "felix says meeow!"
cat2 =newcat("ginger")
cat2.talk()//alerts "ginger says meeow!"
cat.prototype.changeName =function(name){
this.name = name;
}
firstCat =newcat("pursur")
firstCat.changeName("Bill")
firstCat.talk()//alerts "Bill says meeow!"
// thanks to webreference
function superClass() {
this.supertest = superTest;//attach method superTest
}
function subClass() {
this.inheritFrom = superClass;
this.inheritFrom();
this.subtest = subTest;//attach method subTest
}
function superTest() {
return "superTest";
}
function subTest() {
return "subTest";
}
var newClass =newsubClass();
alert(newClass.subtest());// yields "subTest"
alert(newClass.supertest());// yields "superTest"
// These are the same
object.property
object["property"]
function Circle (xPoint, yPoint, radius) {
this.x = xPoint;
this.y = yPoint;
this.r = radius;
}
var aCircle = new Circle(5, 11, 99);
alert(aCircle.x);
alert(aCircle["x"]);
<script language="javascript" type="text/javascript">
<!--
var testObj = {
prop1 : "hello",
prop2 : "hello2",
prop3 : new Array("hello",1,2)
}
for(x in testObj) alert( x + "-" + testObj[ x ] )
//-->
</script>
<SCRIPT LANGUAGE="javascript">
<!--
var Circle = { x : 0, y : 1, radius: 2 }// another example
for(p in Circle
alert( p + "-" + Circle[ p ] )
//-->
</SCRIPT>
testObj = {
prop1 : "hello",
prop2 : "hello2",
prop3 : new Array("helloa",1,2)
}
for(x in testObj) alert( x + "-" + testObj[ x ] )
var prop3 = testObj["prop3"];
alert(prop3);
//alert(prop[1]);
alert(typeof(prop3));
alert(eval(prop3)[1]);
alert(typeof(eval(prop3)[1]));
没有权限或数据库或对象为只读
问:为什么访问网站时提示“Microsoft VBScript 运行时错误 (0x800A0046) 没有权限或拒绝的权限”,或者出现“Microsoft JET Database Engine (0x80040E09) 不能更新。数据库或对象为只读”。
原因:
ASP系统安装在NTFS分区,而ASP系统的目录没有给访问的用户读写权限引起的。
解决方法:
(1)检查是否在IIS中对整个网站打开了“写入”权限,而不仅仅是数据库文件。
(2)检查是否在WIN2003的资源管理器中,将网站所在目录对EveryOne用户打开所有权限。具体方法是:打开“我的电脑”----找到网站所在文件夹----在其上点右键----选“属性”-----切换到“安全性”选项卡,在这里给EveryOne用户所有权限。
注意: 如果你的系统是XP,请先点“工具”----“文件夹选项”----“查看”-----去掉“使用简单文件共享”前的勾,确定后,文件夹“属性”对话框中才会有“安全性”这一个选项卡。
(假定ASP系统安装在H:\PowerEasy目录下,下面的图示以WINXP为例,其它系统可以参照进行设置,Win2000、Win2003前三步不需要设置)
一、查看ASP系统是否安装在NTFS分区内,FAT32分区无些问题。










上海轨道交通运营线路示意图
地址:http://ala.online.sh.cn/map/images/e-map_1.swf
美国电影学院百年百部励志电影