搜索列表
-
javascript asp教程第十一课--Application 对象
【ASP编程】Overview: The Application Object represents a collection of ASP pages. The Application object has zero (0) properties, two (2) collections, two (2) methods, and two (2) events. Get Started: Below are a couple scripts for lesson11. <%@LANGUAGE="JavaScript"%> <%...
javascriptasp教程第十一课--Application对象 -
javascript asp教程第十课--global asa
【ASP编程】Global.asa: First of all, what is a global.asa? It's an optional script file that holds certain "global" information that you can access through the entire ASP appliciation. The global.asa is a plain text file saved with the .asa extension. You should only have one global.asa and it should go ...
javascriptasp教程第十课--globalasa -
javascript asp教程第九课--cookies
【ASP编程】Response Cookies in General: We'll start with the Response Cookies collection. I don't think it could be any easier. You simply put the name of the cookie in the argument. The corresponding value is a string. The only time it gets complicated is when you use keys (which I demonstrate b...
javascriptasp教程第九课--cookies -
javascript asp教程第八课--request对象
【ASP编程】Request Object: Request has five (5) Collections, one (1) Property, and one (1) Method. You'll use the Collections far more than the property or the method. Request Collections: Below is a table of the Request Collections and descriptions of how they are used. Request Collections Cli...
javascriptasp教程第八课--request对象 -
javascript asp教程第七课--response属性
【ASP编程】Below is a table of Response Properties along with examples and explanations. Response Properties Buffer Response.Buffer = trueAllows for the buffering of output CacheControl Response.CacheControl="Public" Sets Cache to "Public" or "Private" CharSet Response.CharSet="window...
javascriptasp教程第七课--response属性 -
激发你的灵感:50个优秀的Favicons
【CSS/HTML】原文:http://www.smashingmagazine.com/page/2/翻译:Blank(怿飞) Inspire Yourself: 50 Remarkable Favicons激发你的灵感:50个优秀的Favicons 引用:Actually it's a pity that many designers don't really make use of them. Favicons, mini graphics for a particular web-site, can be displayed in...
激发你的灵感:50个优秀的Favicons -
局域网设置自动配置脚本文件的写法与用途
【其它脚本】因为有朋友在深圳大学,他们学校的网络比较变态。如果访问了教育网指定的免费IP之外的IP,每M 6元钱。 我本来想教她用二级代理之类的,不过无奈这个对她来讲太难了。所以权宜之下,我只好让她使用IE的自动配置脚本文件来限制以防万一,至少能保证她在使用浏览器上网的时候不会因为不小心访问了收费的IP而挨宰...
局域网设置自动配置脚本文件的写法与用途 -
用css制作星级评分第1/3页
【CSS/HTML】原文:Creating a Star Rater using CSS 链接:http://komodomedia.com/blog/index.php/2005/08/24/creating-a-star-rater-using-css/ 版权:版权归原作者所有,翻译文档版权归本人|greengnn,和blueidea。 先看看效果 Step 1: XHTML <ul class="star-rating"> &nb...
用css制作星级评分 -
转载一个别人收藏的精典网站Ruby,HIBERNATE相关
【其它脚本】ror官方网站:http://www.rubyonrails.org/可以作为了解这项技术的起点,那里面有一个15分钟搭建一个blog的视频很值得一看Rolling with Ruby on Rails:http://www.onlamp.com/pub/a/onlamp/2005/01/20/rails.html?page=1Curt Hibbs写的对于ror的学习过程,还没来得及看,但是实在是太多地方reference了...随大...
转载一个别人收藏的精典网站RubyHIBERNATE相关 -
Cross-Browser Variable Opacity with PNG
【CSS/HTML】Periodically, someone tells me about the magic of PNG, how it's the ideal image format for the web, and that someday we'll all be using it on our sites instead of GIF. People have been saying this for years, and by now most of us have stopped listening. Sadly, flaky browser support h...
Cross-BrowserVariableOpacitywithPNG -
兼容多浏览器实现半透明(Opera ie firefox)
【CSS/HTML】Click on a link above to make the image disappear and re-appear by gradually fading in/out. It uses CSS transparency, in CSS you can set the&nbs...
兼容多浏览器实现半透明(Operaiefirefox) -
读写xml文件的2个小函数
【XML/RSS】要利用DOM 来存取XML 文件,你必须将XML 文件连结到HTML 网页上。 #region 读写xml文件的2个小函数,2005 4 2 by hyc public void SetXmlFileValue(string xmlPath,string AppKey,string AppValue)//写x...
读写xml文件的2个小函数