为你而来

1 2 3 4 5 ··· 10 下一页

2012年11月3日

在ie和firefox中分别设置透明滤镜

摘要: filter:alpha(opacity=60); //ie的设置方法 opacity:0.6;//firefox也有透明的滤镜!相对简单 阅读全文

posted @ 2012-11-03 23:04 为你而来 阅读(225) 评论(0) 推荐(0) 编辑

2012年10月21日

javascript小知识

摘要: <input type='button' id="btn1" value="button1"/>方法1:var object=document.getElementById("btn1");object.value="command1";方法2:btn1.value="command1";方法3:var object=document.getElementsByTagName("input")[0];object.value="comma 阅读全文

posted @ 2012-10-21 21:52 为你而来 阅读(105) 评论(0) 推荐(0) 编辑

2012年10月8日

extjs换肤

摘要: 解压下载的皮肤如xtheme-purple.zip把其中的css文件复制到Ext框架下的resources\css目录下,集中放置,如ext-3.1.1\resources\css把image文件夹下存放图片的文件夹,复制入Ext框架下resources\images,如ext-3.1.1\resources\images以前面皮肤为例,在ext-all.css之后,添加xtheme-purple.css代码片段:1 <link rel="stylesheet" type="text/css" href="http://www.cnblo 阅读全文

posted @ 2012-10-08 23:26 为你而来 阅读(382) 评论(0) 推荐(0) 编辑

2012年10月7日

extjs报“未结束的字符串常量”问题

摘要: 打开Ext框架根目录下src/locale/ext-lang-zh_CN.js文件,如用editplus打开,文件->另存为编码gb2312的js文件,覆盖即可;也就是说,文件的编码要与引用它的网页文件的编码一致。 1 <HTML> 2 <HEAD> 3 4 <TITLE>使用EXT输出HelloWorld</TITLE> 5 6 <link rel="stylesheet" type="text/css" href="http://www.cnblogs.com/resources/ 阅读全文

posted @ 2012-10-07 21:59 为你而来 阅读(610) 评论(0) 推荐(0) 编辑

2012年9月30日

aspnet企业级开发:html的iframe标签

摘要: 1 <html>2 <head></head>3 <body>4 <a href="6-43.html" target="id-name">links</a>5 <br/>6 <iframe name="id-name" style="border:solid 1px green;width:600px;height:500px;"></iframe>7 <!-- 点击上面的链接,加载6-43.html 阅读全文

posted @ 2012-09-30 22:26 为你而来 阅读(195) 评论(0) 推荐(0) 编辑

2012年9月24日

aspnet企业级开发:Ext js智能提示

摘要: visual studio 2008像是支持JavaScript智能提示的而要Ext js智能提示,只需在开发的项目中,添加vswd-ext_2.0.2.js文件在开发的.js文件中,添加代码///<reference path="vswd-ext_2.0.2.js"/>,引用即可;注意路径的不同这样则有了提示,如输入Ext.xxxx(); 阅读全文

posted @ 2012-09-24 12:46 为你而来 阅读(220) 评论(0) 推荐(0) 编辑

2012年9月20日

aspnet企业级开发:html服务器控件的属性2

摘要: 1 HtmlInputText obj=new HtmlInputText();2 3 obj.Style.add("border","solid 1px green");4 //15 6 obj.Style["border"]="solid 1px green";7 obj.Style["color"]="#aaaaaa";8 //21 obj.value="xxxxxx";2 3 obj.Attributes["value"] = 阅读全文

posted @ 2012-09-20 22:38 为你而来 阅读(177) 评论(0) 推荐(0) 编辑

aspnet企业级开发:iis5伪静态

摘要: 首先下载一个实现伪静态的软件:isapi_rwl_0055.msi然后在iis5服务器中,右键网站,点属性,选择筛选器,添加筛选器指定以上软件安装目录下的\Helicon\ISAPI_Rewrite\ISAPI_Rewrite.dll去掉这个目录下的httpd.ini文件只读属性修改文件内容为1 [ISAPI_Rewrite]2 3 RewriteRule /myasp/asp_([0-9,a-z,A-Z]*).html /myasp/test_style.aspx?id=$1这样便完成了,在网址上输入http://localhost/myasp/asp_1341411aaaZZZ.html也 阅读全文

posted @ 2012-09-20 00:58 为你而来 阅读(378) 评论(0) 推荐(0) 编辑

2012年9月19日

aspnet企业级开发:显示天气预报

摘要: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Web; 5 using System.Web.UI; 6 using System.Web.UI.WebControls; 7 using System.Data; 8 9 public partial class _3_6 : System.Web.UI.Page10 {11 protected void Page_Load(object sender, EventArgs e)12 {13 ... 阅读全文

posted @ 2012-09-19 23:51 为你而来 阅读(419) 评论(0) 推荐(0) 编辑

2012年9月18日

aspnet企业级开发:在html中插入swf文件的代码

摘要: 1 <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="550" height="400" id="Untitled-1" align="center">2 <param name=& 阅读全文

posted @ 2012-09-18 11:28 为你而来 阅读(860) 评论(0) 推荐(0) 编辑

1 2 3 4 5 ··· 10 下一页

导航