摘要: (*^__^*) 嘻嘻……,以前我找关闭浏览器选项卡的代码找不到,我还以为要用后台代码关呢?今天发现只要简单2句JavaScipt代码就可以了。看来很多东西还是在于平时的积累啊的说!模仿延儿的口气了! IE google 可以关,火狐下面关不了 阅读全文
posted @ 2013-08-06 18:13 罗马景行 阅读(259) 评论(0) 推荐(0)
摘要: 数据库表设计邓老师(老邓教的)insert into TestOnevalues('011','Test011')select @@IDENTITY as '自动增长ID'杨老师(老杨教的)insert into TestOneoutput inserted.ID as '自动增长ID'values('010','Test010')最近偷的((*^__^*) 嘻嘻……)insert into TestOnevalues('013','Test013')select i 阅读全文
posted @ 2013-08-06 11:26 罗马景行 阅读(631) 评论(0) 推荐(0)
摘要: 以前用过几种,但是都没有总结。今天又看到了一种,先写下来,以后慢慢加吧!string str1= System.AppDomain.CurrentDomain.BaseDirectory.ToString(); 阅读全文
posted @ 2013-08-06 09:41 罗马景行 阅读(183) 评论(0) 推荐(0)
摘要: public static void Main(string[] args){ string str = "[1111111 FFF 1111111]"; string str1 = "\n 111111 \v"; //如果此字符串开始字符为 '[', 结束字符为 ']',而且其中存在字符串 "FFF" if (str.StartsWith("[") && str.EndsWith("]") && str.Contains(&quo 阅读全文
posted @ 2013-08-06 09:19 罗马景行 阅读(271) 评论(0) 推荐(0)