ASP.NET 服务器控件渲染到客户端之后对应的HTML标签
摘要:服务器控件 html标记label----------button---------textbox--------linkbutton-----imagebutton----hyperlink------dropdownlist---listbox--------checkbox-------checkboxlist--- 1 2radiobutton------radiobuttonlist-- 1 2image-----------imagemap--------table-----------BulletedList-----12hiddenfield----Literal-------
阅读全文
posted @
2012-04-17 13:19
jackljf
阅读(196)
推荐(0) 编辑
pl/sql中添加 shortcuts插件
摘要:pl/sql中添加 shortcuts插件 在pl/sql中添加快捷键的支持只需要把一个文本类型的文件shortcuts.txt放入到pl/sql安装目录下的plugins文件夹中。其中shortcuts.txt 文件中的内容为(自定义的内容,可以根据自己的习惯设置):s = select * fromf = for update;sc* = select count(*) fromw = where打开pl/sql developer进入[首选项]->[用户界面]->[编辑器]->[autoreplace],选中enabled复选框,再查找 shortcuts.txt所在的
阅读全文
posted @
2012-04-15 21:54
jackljf
阅读(195)
推荐(0) 编辑
html之marquee详解
摘要:该标签不是HTML3.2的一部分,并且只支持MSIE3以后内核,所以如果你使用非IE内核浏览器(如:Netscape)可能无法看到下面一些很有意思的效果该标签是个容器标签语法:以下是一个最简单的例子:代码如下:Hello, World下面这两个事件经常用到:onMouseOut="this.start()" :用来设置鼠标移出该区域时继续滚动onMouseOver="this.stop()":用来设置鼠标移入该区域时停止滚动代码如下:onMouseOut="this.start()" :用来设置鼠标移出该区域时继续滚动 onMouse
阅读全文
posted @
2012-04-06 10:30
jackljf
阅读(104)
推荐(0) 编辑
调整Android 模拟器窗口大小
摘要:Android 模拟器窗口默认值的分辨率太大 也看着不爽 那么如何改变模拟器大小呢? 选择Windows->Android SDK and AVD Manager,点开,里面就有你创建的AVD了,你选中一个,然后点start按钮,会出现一个窗口在Launch Options里选择 Scale display to real size ,然后 Screen Size (in) 选择适当的大小*,在Monitor dpi 上输入*, 调到自己觉得舒服的大小,这样就可以了。
阅读全文
posted @
2012-04-02 18:49
jackljf
阅读(277)
推荐(0) 编辑
Android 模拟器(Emulator)访问模拟器所在主机
摘要:Android 模拟器(simulator)访问模拟器所在主机问题描述:org.apache.http.conn.HttpHostConnectException: Connection to http://127.0.0.1:8080 refused1. 出现这个错误是因为,在测试的时候将模拟器要连接的本地网址写成了127.0.0.1。2. android模拟器(simulator)把它自己作为了localhost,也就是说,代码中使用localhost或者127.0.0.1来访问,都是访问模拟器自己,所以自然访问不到想要的主机地址了。3. 在模拟器上可以用10.0.2.2代替127.0.0
阅读全文
posted @
2012-04-02 17:17
jackljf
阅读(406)
推荐(0) 编辑
IIS 7.5 deploying errors and their solutions
摘要:IIS 7.5 deploying errors and their solutions While deploying my web project created using VS 2010(.Net 4.0) on OS Windows 7 and IIS 7.5Igot the following errors which took some time to be resolved. I am sharing the information here so if anyone else faces the same situation, the solution is at hand.
阅读全文
posted @
2012-04-01 20:12
jackljf
阅读(119)
推荐(0) 编辑