上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 17 下一页
摘要: function ltopenwin(url) { OpenWindow = window.open(url, "newwin", "height=650, width=750,toolbar=no, menubar=no, scrollbars=no, resizable=yes, location=no, status=no;tager"); OpenWindow.document.write... 阅读全文
posted @ 2010-08-07 21:35 China2008 阅读(174) 评论(0) 推荐(0)
摘要: using System;using System.Web.UI;using System.Web.UI.WebControls;using System.Web.UI.WebControls.WebParts;using Microsoft.SharePoint;using System.Data;namespace All_Tongzi.VisualWebPart1{ public partial class VisualWebPart1UserControl : UserControl { protected void Page_Load(object sender, EventArgs 阅读全文
posted @ 2010-08-07 02:43 China2008 阅读(211) 评论(0) 推荐(0)
摘要: using System;using System.Runtime.InteropServices;using System.Web.UI;using System.Web.UI.WebControls;using System.Web.UI.WebControls.WebParts;using System.Xml.Serialization;using Microsoft.SharePoint... 阅读全文
posted @ 2010-08-04 18:02 China2008 阅读(199) 评论(0) 推荐(0)
摘要: “ SPSiteDataQuery”,可以用来进行跨站多列表混合查询,检索同一个网站集的或者指定网站中符合某项条件的所有列表项的集合。每个 SPWeb对象都包含一个 GetSiteData方法,通过传递一个 SPSiteDataQuery实例作为方法的参数,返回一个 DataTable类型的结果 。 当我们使用 SPSiteDataQuery查询数据时,主要涉及到下面几个参... 阅读全文
posted @ 2010-08-03 11:24 China2008 阅读(240) 评论(0) 推荐(0)
摘要: 微软CRM系统的二次开发主要包括四个方面:1)自定义实体的设置;2):站点图的设置;3)ISV.Config文件(实体页面导航条以及功能菜单)的配置;4)客户端JavaScript的设计。特别注意:对系统中进行的二次开发之后一定要在自定义界面选择“发布”,不然是不能使用的。一:自定义实体的设置微软CRM系统提供按照自己需求要求,对CRM系统功能进行扩充,因此也涉及到用户自定... 阅读全文
posted @ 2010-07-29 16:34 China2008 阅读(422) 评论(0) 推荐(0)
摘要: if(top.location!=self.location){top.location=self.location;} 阅读全文
posted @ 2010-07-24 01:31 China2008 阅读(155) 评论(0) 推荐(0)
摘要: javascript函数中执行C#代码中的函数:方法一:1、首先建立一个按钮,在后台将调用或处理的内容写入button_click中;2、在前台写一个js函数,内容为document.getElementById("btn1").click();3、在前台或后台调用js函数,激发click事件,等于访问后台c#函数;方法二:1、函数声明为public后台代码(把public改成protected也... 阅读全文
posted @ 2010-07-24 01:28 China2008 阅读(470) 评论(0) 推荐(0)
摘要: SharePoint 2010 中的BCS身份验证模式 BCS(Business Connectivity Services)是SharePoint 2010中用于替换原先Microsoft Office SharePoint Server 2007企业版的业务数据目录(Business Data Catalog ,简称BDC)的一项新服务。 BCS相比BDC而言有许多改进,包括回写到数据源的功能... 阅读全文
posted @ 2010-07-23 16:44 China2008 阅读(767) 评论(0) 推荐(0)
摘要: 加密: staticStringEncrypt(Stringpwd){ DESCryptoServiceProviderdesc=newDESCryptoServiceProvider();//des进行加密 PasswordDeriveBytesdb=newPasswordDeriveBytes(pwd,null);//产生key byte[]key=db.GetBytes(8); Memory... 阅读全文
posted @ 2010-07-20 15:39 China2008 阅读(308) 评论(0) 推荐(0)
摘要: 以前开发项目时经常是自己开发一套用户权限管理系统进行验证,比较灵活。最近为了单点登录的问题又把Asp.Net自带的验证方式看了一遍,发现这种方式也比较方便,功能也还可以。在Asp.Net提供了三种常用的验证方式:Windows方式是和IIS结合起来可以实现基本、摘要、集成 Windows等身份验证;Passport方式是使用Windows Live ID的帐户来进行统一验证的;Forms方式是使用... 阅读全文
posted @ 2010-07-06 17:36 China2008 阅读(257) 评论(0) 推荐(0)
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 17 下一页