摘要: SPQuery query = new SPQuery(); query.Query = @"<Where> <And> <And> <Eq> <FieldRef Name='Over_x0020_Due' /> <Value Type='Choice'>ture</Value> </Eq> <Eq> <FieldRef Name='Responsible' /> <Value Type='User 阅读全文
posted @ 2011-09-30 11:18 落 枫 阅读(850) 评论(0) 推荐(0) 编辑
摘要: 1.导入Interop.SAPFunctionsOCX.dll Interop.SAPlogonCtrl.dll Interop.SAPTableFactoryCtrl2. com端口,缺点:占用线程,单线程 private void getCurrentStock(object obj) { SPItemEventProperties Pro = (SPItemEventProperties)obj; SPListItem item = Pro.ListItem; SAPFunctionsOCX.SAPFunctionsClass func = VStoSAP.getSAPFunctio.. 阅读全文
posted @ 2011-09-28 11:55 落 枫 阅读(784) 评论(0) 推荐(0) 编辑
摘要: //using (SPWeb web5=site.OpenWeb("RolesManagement")) //{ // SPList listcorp=web5.Lists["CorpManagement"]; //} //using (SPWeb web7 = site.AllWebs["MRBReport"]) //{ // SPList list7 = web7.Lists["MRBReport"]; //} //using (SPWeb web6 = site.OpenWeb("MRBReport 阅读全文
posted @ 2011-09-28 11:39 落 枫 阅读(214) 评论(0) 推荐(0) 编辑
摘要: 在event receiver中如何弹出一个类似winform中messagebox.show 的框?那我要对用户显示一些错误信息或者提示信息怎么搞?1.如果是在ItemAdding或者其他进行时(ing)事件里面,可以使用HttpContext.Current.Response.Write("<script>alert('aaaa');</script>");如果是在ItemAdded或者其他结束后(ed)事件里面,那就没招。因为这类事件是异步的,已经获取不到页面的HttpResponse。2.可以在event reciver 里控 阅读全文
posted @ 2011-09-26 09:26 落 枫 阅读(438) 评论(0) 推荐(0) 编辑
摘要: http://cnsh-10aplx:1888/MRBReport/_layouts/savetmpl.aspx 保存网站模板http://cnsh-10aplx:1888/_catalogs/wt/Forms/Common.aspx 模板保存地方displaymode=design Toolpaneview=2#The backup/restore job failed because there is already another job scheduled. Delete the timer job from the Timer Job Definitions page, and th 阅读全文
posted @ 2011-09-21 16:22 落 枫 阅读(263) 评论(0) 推荐(0) 编辑
摘要: strres = Globals.RenderControl(targetControl); //string strTest = strres.ToString().Replace("1\r\n 楼", "LOVE"); //Regex regex = new Regex("1[1\\S|\\s]*楼"); //Regex regex = new Regex("{n}[\\S|\\s]*楼"); //string strTest = regex.Replace(strres, "☉"); // 阅读全文
posted @ 2011-09-20 13:57 落 枫 阅读(111) 评论(0) 推荐(0) 编辑
摘要: 网址:http://localhost:1897/News/Press/Content.aspx/123?id=1#tocRequest.ApplicationPath/Request.PhysicalPathD:\Projects\Solution\web\News\Press\Content.aspxSystem.IO.Path.GetDirectoryName(Request.PhysicalPath)D:\Projects\Solution\web\News\PressRequest.PhysicalApplicationPathD:\Projects\Solution\web\Sys 阅读全文
posted @ 2011-09-20 13:54 落 枫 阅读(230) 评论(0) 推荐(0) 编辑
摘要: 以web形式对function module进行调用与form形式基本一样,唯一值得注意的地方就是:"An ActiveX control must be run in an STA apartment. Because the attribute STAThread is applied to the Main method of a WinForm class by default with a WinForms Project, the main thread of your app will run in STA mode.".也就是说有些AcrtiveX控件或者C 阅读全文
posted @ 2011-09-15 15:20 落 枫 阅读(294) 评论(0) 推荐(0) 编辑
摘要: 作为一个应用原型系统,SharePoint提供了很多强大的应用及管理功能,但是,在实际的应用中,这些原有的功能很难满足用户的需求。因此,SharePoint也提供了一套非常完整的对象模型作为底层接口,以此为基础进行二次开发。Windows SharePoint Services(以下简称WSS)作为SharePoint Portal Server(以下简称SPS)的基础部分,是在开发过程中使用最多的一套体系。因此,在本书开发部分的开始,使用一章的篇幅来介绍WSS的对象模型体系,以及一些简单的应用。WSS提供了非常完善的一套对象模型体系,大致整个的Web服务器(SPWebServer类)、小到一 阅读全文
posted @ 2011-09-15 15:15 落 枫 阅读(203) 评论(0) 推荐(0) 编辑
摘要: //取得某月的最后一天 //方法一:使用算出該月多少天,年+月+加上多少天即得,舉例取今天這個月的最后一天 private void GetLastDateForMonth(DateTime DtStart, out DateTime DtEnd) { int Dtyear, DtMonth; DtStart = DateTime.Now; Dtyear = DtStart.Year; DtMonth = DtStart.Month; int MonthCount = DateTime.DaysInMonth(Dtyear, DtMonth);//計算該月有多少天 DtEnd = Conver 阅读全文
posted @ 2011-09-15 13:08 落 枫 阅读(1881) 评论(0) 推荐(0) 编辑