- 博客(23)
- 收藏
- 关注
原创 挨踢生涯文档集
oracle 文档地址:http://www.oracle.com/technetwork/cn/community/developer-day/db-cloud-technology-conference-3109902-zhs.htmlRGB颜色对照表:http://www.114la.com/other/rgb.htm
2016-08-03 10:01:41
420
转载 asp.net 页面导出word
终于成功了总的说是utf-8不行就GB2312 protected void Button_Click(object sender, EventArgs e) { Response.Clear(); Response.Buffer = true; Response.Charset = "GB2312";
2015-02-26 15:04:12
710
原创 一些有用的SQL
积少成多~!1、通过一个表中的多个ID查询另个一表中的条目(适用环境:如多个经理下面所有员工的集合,一个经理有多个员工)查询所有id,并将查询结果变为字符串(最简单)select ',' + convert(varchar, UserID) from [dbo].[User] where parentUserId = XXXX 将查询结果合并为一行 select stuff((sel
2015-02-02 15:49:17
487
原创 C# 泛型 模板 反射类成员
public string Create( List list) where T:class {string result = ""; if (list == null || list.Count == 0) { result = "NoData"; }
2014-12-17 14:51:54
986
原创 css 中table简易样式
因为一直做页面的表格样式所以将一些收集整理了一下标题标题标题标题内容:123内容:456内容:123内容:456table tr{}//表格行样式table tr:nth-child(odd){}//表格奇数行样式table tr:nth-chil
2014-12-08 17:58:32
1014
转载 页面简单视频设置及播放
将下面的代码放ru /nsmp2inf.cab#Version=6,4,5,715" standby="Loading Microsoft Windows Media Player components..." type="application/x-oleobject" align="right" hspace="5">
2014-09-12 17:47:08
864
原创 Sql 使用循环将一表的数据拆分为多表
select id as departmentNo,ROW_NUMBER() OVER(ORDER BY id) AS rowNumber into #depTemp--建立临时表from [zhanghu]declare @max int--获得最大的rowNumberselect @max=max(rownumber)from #depTempdeclare
2014-07-09 11:26:30
5077
原创 Jquery 下拉菜单移入移出特效
var menu_trigger;//声明定时器function menuShow() { $(".OneMenu li").each(function () {、、 var currentOneMenu = $(this); $(this).mouseenter(function () { menu_trigger
2014-06-27 14:22:05
1207
原创 Google地图
点击这个按钮,获得您的位置:点一哈 var x = document.getElementById("demo"); function getLocation() { if (navigator.geolocation) { navigator.geolocation.getCurrentPosition(showPo
2014-03-14 13:34:57
540
原创 windows服务安装卸载,sharepointWSP安装卸载
Windows服务 CMD中cd C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727InstallUtil.exe E:\project\tfs\SSDT\Develop\Main\Source\Web\二期\Foundare.SSDT.SAPSyn\SSDTSynchro\WindowsSAPSynchroService\bin\Debug\
2014-03-14 10:42:18
927
转载 smtp邮件发送
using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Net.Mail;using System.Net.Mime;using System.IO;/// ///MyEmail 的摘要说明/// public clas
2014-03-03 11:36:38
1722
翻译 简单XML读写操作
创建XML /// /// 创建XML /// /// public void CreateXMLFile(string XMLPath) { XmlDocument xmlDoc = new XmlDocument(); //加入X
2013-12-12 17:48:25
634
转载 C#后台调用jquery
//Page.ClientScript.RegisterStartupScript(this.GetType(), "pop", "AddNoticeMangager()", true); Page.ClientScript.RegisterStartupScript(this.GetType(), "", " $('#Notice01_Robin_Header'
2013-12-05 17:46:31
1439
原创 C# 简单的日志读写。
/// /// 同步完成写入错误信息 /// /// public static void WriteSystemErrorLog(string ListName, string SapNumber, string errorInfo) { try {
2013-12-05 17:09:36
815
原创 SharePoint 检查当前用户是否在某sharePoint用户组中
因为要做webpart权限判断所以决定用用户组来区分是否有权限,于是找到了几种方法。这句是无敌的,因为这是判断当前用户是否是administratro组的用户,如果是当然是无所不能了 bool isSiteAdmin = SPContext.Current.Site.OpenWeb().CurrentUser.IsSiteAdmin;一,直接得到当前用户然后遍
2013-12-05 17:02:57
2600
转载 Jquery 显示和隐藏特效
1DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 2html xmlns="http://www.w3.org/1999/xhtml"> 3head> 4meta http-equiv="Cont
2013-11-27 11:03:17
865
转载 资源文件读写
写资源文件:IResourceWriter writer = new ResourceWriter("Resource.resx");writer.AddResource("id", "0001");writer.AddResource("name", "furenjun");writer.AddResource("age", "22");writer.Close();
2013-11-26 17:46:45
544
转载 用jquery获取当前时间
当期时间 .date{height:100px;line-height:100px;margin:0 auto;font-family:Arial, Helvetica, sans-serif;font-size:40px; border:solid 1px #ccc;box-shadow:0 0 3px
2013-11-26 11:25:28
815
转载 页面中添加flash动画。
一、介绍:我们要在网页中正常显示flash内容,那么页面中必须要有指定flash路径的标签。也就是OBJECT和EMBED标签。OBJECT标签是用于 windows平台的IE浏览器的,而EMBED是用于windows和Macintosh平台下的Netscape Navigator浏览器以及Macintosh平台下的IE浏览器。windows平台的IE利用Activex控件来播放flash而其
2013-11-15 16:49:28
652
原创 在SharePoint页面中操作同页面的WebPart
public void GetPagesWebPart() { //得到当前页面的所有WebPart WebPartManager wpm = WebPartManager.GetCurrentWebPartManager(this.Page); int webPartCount = wpm.WebPart
2013-11-08 17:59:31
764
原创 Web 页面动态创建ASP控件
页面容器只需要加入runat //根据业务动态添加按钮,并设置简单的属性 for (int i = 0; i { Button button = new Button(); button.ID = "Product" + i; but
2013-11-07 10:11:43
666
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人