预读图片:
<SCRIPT LANGUAGE="JavaScript">
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
<!-- Begin
image1 = new Image();
image1.src = "image1.gif";
image2 = new Image();
image2.src = "image2.gif";
// End -->
</script>
<SCRIPT LANGUAGE="JavaScript">
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
<!-- Begin
image1 = new Image();
image1.src = "image1.gif";
image2 = new Image();
image2.src = "image2.gif";
// End -->
</script>
<body onload="window.open('fullscreen.htm','','fullscreen=1,scroll=no');window.opener=null;window.close()">
<input type=button value=关闭 onclick="window.opener=null;window.close()">
<!-- IE5.5+ 不会有弹出提示 -->
<OBJECT id=WebBrowser classid=CLSID:8856F961-340A-11D0-A96B-00C04FD705A2 height=0 width=0></OBJECT>
<input type=button value=关闭窗口 onclick=document.all.WebBrowser.ExecWB(45,1)>
<input type=button value=关闭 onclick="window.opener=null;window.close()">
<!-- IE5.5+ 不会有弹出提示 -->
<OBJECT id=WebBrowser classid=CLSID:8856F961-340A-11D0-A96B-00C04FD705A2 height=0 width=0></OBJECT>
<input type=button value=关闭窗口 onclick=document.all.WebBrowser.ExecWB(45,1)>
禁止服务器缓存的问题
[ 2005-11-12 15:15:09 | 作者: admin ]
in Page_Load event:
Response.Cache.SetNoServerCaching();
Response.Cache.SetCacheability(System.Web.HttpCacheability.NoCache);
Response.Cache.SetNoStore();
Response.Cache.SetExpires(new DateTime(1900,01,01,00,00,00,00));
Response.Cache.SetNoServerCaching();
Response.Cache.SetCacheability(System.Web.HttpCacheability.NoCache);
Response.Cache.SetNoStore();
Response.Cache.SetExpires(new DateTime(1900,01,01,00,00,00,00));
topmargin="0" leftmargin="0" onclick="SelectContr();" ondragstart="return false;" onselectstart="return false;"
[推荐]顶级网页配色词典,培养你的色感
[ 2005-11-12 15:08:38 | 作者: admin ]
策划正确的配色方案时必须要有一个判断标准。 网页设计师策划一个网站需要经过反复多次的思考,而在决定网页配色方案时同样需要经过再三的思量。为了得到更好的策划意见,组织者既应该与合作人员反复进行集体讨论,还应该找一些风格类似的成功站点进行技术分析,一个大型站点是由几层甚至数十层的链接和上百上千种不同风格的网页所构成,所以在需要的时候应该绘制一个合理的层级图。 如果在一个站点配色方案的策划中只凭设计师的感觉来决定最终的配色方案,则成功的机会就会很少,而且即使成功一次,也保证不了下一次同样能够成功。何况一个设计师好的建议在没有任何根据的情况下也不能说服团队中的其他合作成员。萝卜白菜各有所好,如果团队中的每一个成员都执意主张自己的观点,那么这个团队就会一事无成。 当然,感觉是设计师的灵魂,没有感觉的设计师就如同一个没有灵魂的躯壳。但光凭感觉也不能够得到好的结果,如果说好的设计等于感觉加一个未知...
阅读全文…
阅读全文…
关于 upload_5xSoft
[ 2005-11-12 15:03:44 | 作者: admin ]
使用了upload_5xSoft无组件就不能用request.form来获得表单控件的值,只用用
upload_5xSoft提供的upload.form来获取表单控件的值.
upload_5xSoft提供的upload.form来获取表单控件的值.
function doPage(n){
location.href=location.pathname+'?page='+n+'&startdate=2004-02-03&enddate=2005-9-19';
}
location.href=location.pathname+'?page='+n+'&startdate=2004-02-03&enddate=2005-9-19';
}
WEB页面多语言支持解决方案
[ 2005-11-12 14:56:57 | 作者: admin ]
WEB页面多语言支持解决方案
首先建立语言档,在项目中加入.resx文件
例如:
message.zh-cn.resx '简体中文
message.zh-tw.resx '繁体中文
message.en '英文
..............
=========================================
然后利用Name --Value 键值对 填入你要在页面上显示的语言
如:
name value
message.zh-cn.resx中:
res_loginbname 登陆名 :
message.zh-tw.resx中:
res_loginbname 登陸名 :
message.zh-cn.resx中:
res_loginbname Login Name :
=========================================
...
阅读全文…
首先建立语言档,在项目中加入.resx文件
例如:
message.zh-cn.resx '简体中文
message.zh-tw.resx '繁体中文
message.en '英文
..............
=========================================
然后利用Name --Value 键值对 填入你要在页面上显示的语言
如:
name value
message.zh-cn.resx中:
res_loginbname 登陆名 :
message.zh-tw.resx中:
res_loginbname 登陸名 :
message.zh-cn.resx中:
res_loginbname Login Name :
=========================================
...
阅读全文…