摘要:
WSS 3.0中我们使用:SPSecurity.RunWithElevatedPrivileges(delegate(){ // implementation details omitted});可以提升代码的运行权限,实现模拟管理员身份的功能。在RunWithElevatedPrivileges中不要使用SPContext.Current.Web,SPContext.Current.Site,SPControl.GetContextWeb(HttpContext.Current)之类的根据当前上下文得到当前的Web或者Site,根据这些方法得到的所有对象(包括从根据这些对象得到的Lis... 阅读全文
摘要:
http://www.cnblogs.com/team/SharePointTeam.htmlhttp://www.cnblogs.com/cate/sharepoint/http://www.cnblogs.com/lygx/archive/2009/09.html 阅读全文
摘要:
string str2 = FilterHtml(this.TextBox1.Text.ToString()); this.TextBox2.Text = str.Replace("1\r\n 楼", "LOVE"); Regex regex = new Regex("1[1\\S|\\s]*楼");string a = regex.Replace(this.TextBox1.Text.ToString(), "1楼"); b = this.TextBox1.Text.ToString(); Regex regex 阅读全文