2014年7月16日

html5圆角

摘要: 以下是代码片段:#roundCornerI{font-family:Arial;border:5pxsolid#dedede;-moz-border-radius-topleft:15px;-moz-border-radius-topright:0px;-moz-border-radius-bott... 阅读全文

posted @ 2014-07-16 15:06 ruonanxiao 阅读(462) 评论(0) 推荐(0) 编辑

2013年12月3日

SilverLight

摘要: 阅读全文

posted @ 2013-12-03 14:55 ruonanxiao 阅读(117) 评论(0) 推荐(0) 编辑

2013年6月29日

oracle11.0.2 64位版本 Toad连接

摘要: 今天重装了系统 oracle oracle客户端之前连不上toad今天总结客户端路径:E:\app\ruonanxiao-pc\product\11.2.0\client_1服务端路径:E:\app\ruonanxiao-pc\product\11.2.0\dbhome_12、查看环境变量变量名:path中是否有Oracle的变量值,如果没有需添加,例如E:\app\ruonanxiao-pc\product\11.2.0\client_1\bin;变量名:TNS_ADMIN,相关变量值:E:\app\ruonanxiao-pc\product\11.2.0\dbhome_1;变量名:ORAC 阅读全文

posted @ 2013-06-29 01:46 ruonanxiao 阅读(355) 评论(0) 推荐(0) 编辑

2013年1月28日

oracle已有数据表添加主键

摘要: 1.先添加字段。 alter table tablename1 add(columnId int); 2.修改主键字段的值为rownum的值 update tablename1b set B.columnId= rownum;commit;3.直接在PL/SQL等工具修改该字段为主键。commit:完成 阅读全文

posted @ 2013-01-28 14:35 ruonanxiao 阅读(4076) 评论(0) 推荐(0) 编辑

2012年6月28日

火狐自动换行 有空格

摘要: /// <summary> /// 获取长度 /// </summary> /// <param name="len"></param> /// <param name="content"></param> /// <returns></returns> protected string GetFireFox(string content,int len) { string temp = string.Empty; while (content.Length 阅读全文

posted @ 2012-06-28 11:25 ruonanxiao 阅读(191) 评论(0) 推荐(0) 编辑

2012年6月27日

margin标记可以带一个、二个、三个、四个参数,各有不同的含义。

摘要: margin: 20px;(上、下、左、右各20px。) margin: 20px 40px;(上、下20px;左、右40px。) margin: 20px 40px 60px;(上20px;左、右40px;下60px。) margin: 20px 40px 60px 80px;(上20px;右40px;下60px;左80px。) 在css中使用margin可以将margin-top,margin-right,margin-bottom,margin-left,缩写为一个标记,顺序为上右下左(顺时针)。margin标记可以带一个、二个、三个、四个参数,各有不同的含义。 阅读全文

posted @ 2012-06-27 11:26 ruonanxiao 阅读(854) 评论(0) 推荐(0) 编辑

2012年6月19日

oracle分页 排序

摘要: Oracle 分页和排序常用的4条查询语句 IT猫扑技术2009-12-27 22:51来源:itmop.com作者:编辑整理点击:318次 在oracle中如何实现分页和排序功能的查询语句?在实现的手法上可能与MS SQL Server有所差异,这主要都是由于两种数据库中对于结果行号的处理异同造成的,在MS SQL Server中,可以使用top和ROW_NUMBER()方法的结合来实现,一般写法比较简单,而oracle则有很大的不同,只能通过ROWNUM来实现,我们这里主要说明一下,如何使用ROWNUM来实现一些常用的分页和排序查询,有关ROWNUM的概念,随便搜一下,有很... 阅读全文

posted @ 2012-06-19 12:18 ruonanxiao 阅读(430) 评论(0) 推荐(0) 编辑

2012年4月13日

目录

摘要: C:\Program Files\Microsoft Visual Studio 9.0\Visual Studio Tools for Office\PIA\Office11 阅读全文

posted @ 2012-04-13 13:48 ruonanxiao 阅读(107) 评论(0) 推荐(0) 编辑

2012年4月9日

xml

摘要: using System.Xml.Linq;protected static string file = System.Web.HttpContext.Current.Server.MapPath("~/test/ruonanxiao.xml"); public static string GetName() { string name = string.Empty; XElement doc = XElement.Load(file); var names = from p in doc.Descendants("name") select p.Val 阅读全文

posted @ 2012-04-09 23:33 ruonanxiao 阅读(112) 评论(0) 推荐(0) 编辑

2012年4月6日

Asp.Net中几种相似数据绑定标记符号的解释及用法

摘要: ASP.Net中几种相似的标记符号: <%=...%> <%#... %> <% %> <%@ %> 解释及用法 答:<%#... %>: 是在绑定控件DataBind()方法执行时被执行,用于数据绑定 如: <%# Container.DataItem(tit) %> <%= %>: 在程序执行时被调用,可以显示后台变量值 如: *.ASPx中: <%= aaa %> *.cs中: protected string aaa=姓名; <% %>: 内联代码块里面可以在页面文件*.ASPx 阅读全文

posted @ 2012-04-06 14:10 ruonanxiao 阅读(204) 评论(0) 推荐(0) 编辑

导航