ASP.Net分区
文章平均质量分 78
九幽之君
迷上电脑程序
展开
-
Web 页面动态创建ASP控件
页面容器只需要加入runat //根据业务动态添加按钮,并设置简单的属性 for (int i = 0; i { Button button = new Button(); button.ID = "Product" + i; but原创 2013-11-07 10:11:43 · 649 阅读 · 0 评论 -
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 · 691 阅读 · 0 评论 -
css 中table简易样式
因为一直做页面的表格样式所以将一些收集整理了一下标题标题标题标题内容:123内容:456内容:123内容:456table tr{}//表格行样式table tr:nth-child(odd){}//表格奇数行样式table tr:nth-chil原创 2014-12-08 17:58:32 · 983 阅读 · 0 评论 -
Jquery 下拉菜单移入移出特效
var menu_trigger;//声明定时器function menuShow() { $(".OneMenu li").each(function () {、、 var currentOneMenu = $(this); $(this).mouseenter(function () { menu_trigger原创 2014-06-27 14:22:05 · 1188 阅读 · 0 评论 -
Google地图
点击这个按钮,获得您的位置:点一哈 var x = document.getElementById("demo"); function getLocation() { if (navigator.geolocation) { navigator.geolocation.getCurrentPosition(showPo原创 2014-03-14 13:34:57 · 532 阅读 · 0 评论 -
SharePoint 检查当前用户是否在某sharePoint用户组中
因为要做webpart权限判断所以决定用用户组来区分是否有权限,于是找到了几种方法。这句是无敌的,因为这是判断当前用户是否是administratro组的用户,如果是当然是无所不能了 bool isSiteAdmin = SPContext.Current.Site.OpenWeb().CurrentUser.IsSiteAdmin;一,直接得到当前用户然后遍原创 2013-12-05 17:02:57 · 2536 阅读 · 0 评论 -
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 · 849 阅读 · 0 评论 -
资源文件读写
写资源文件: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 · 531 阅读 · 0 评论 -
用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 · 803 阅读 · 0 评论 -
在SharePoint页面中操作同页面的WebPart
public void GetPagesWebPart() { //得到当前页面的所有WebPart WebPartManager wpm = WebPartManager.GetCurrentWebPartManager(this.Page); int webPartCount = wpm.WebPart原创 2013-11-08 17:59:31 · 746 阅读 · 0 评论 -
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 · 918 阅读 · 0 评论