摘要: js孙页面刷新爷页面 window.parent.opener.location.href = window.parent.opener.location.href; 孙页面关闭当前页面 window.parent.opener=null;window.parent.open('', '_self' 阅读全文
posted @ 2019-01-15 15:14 MissWily 阅读(303) 评论(0) 推荐(0) 编辑
摘要: 方法一 wn_concat() 函数 1、把以下图中Name一样的数据合并为一条,而且NO的值要这样显示如 C.1,C.2 2、实现这种效果的操作如下,先把Name的值进行分组(group by),再把NO的值用 wm_concat()函数合并起来(注意:记得要to_char(),要不然数据显示不出 阅读全文
posted @ 2016-08-23 09:48 MissWily 阅读(15041) 评论(1) 推荐(0) 编辑
摘要: XmlDocument document = new XmlDocument(); document.Load(CofigFilesName); //CofigFilesName:文件路径 如web/web.config XmlNodeList childNodes = document.Selec 阅读全文
posted @ 2016-07-26 10:50 MissWily 阅读(449) 评论(0) 推荐(0) 编辑
摘要: static void Main(string[] args) { string str = "abcabcqwe"; if (str.Length > 0) { //把字符串进行分割 char[] strChar = str.ToCharArray(); //把字符先分组后排序 var c = s 阅读全文
posted @ 2016-06-29 10:57 MissWily 阅读(261) 评论(0) 推荐(0) 编辑
摘要: 版本1: protected void Page_Load(object sender, EventArgs e) { Response.Write("<div id='mydiv' >"); Response.Write("_"); Response.Write("</div>"); Respon 阅读全文
posted @ 2016-06-22 09:31 MissWily 阅读(175) 评论(0) 推荐(0) 编辑
摘要: 打开项目加载时,看到以下提示,则是IIS设置为True了 找到项目的 .Web.csproj文件中 <UseIIS></UseIIS>节点设置为False即可 阅读全文
posted @ 2016-06-16 09:08 MissWily 阅读(264) 评论(0) 推荐(0) 编辑
摘要: <script type="text/javascript"> //处理键盘事件 禁止后退键(Backspace)密码或单行、多行文本框除外 function banBackSpace(e) { var ev = e || window.event;//获取event对象 var obj = ev. 阅读全文
posted @ 2016-05-09 10:25 MissWily 阅读(165) 评论(0) 推荐(0) 编辑
摘要: //出现这种问题,看看是不是少了 behaviorConfiguration="Behaviors.EndpointBehavior" 阅读全文
posted @ 2016-04-07 16:59 MissWily 阅读(303) 评论(0) 推荐(0) 编辑