摘要:
我们要完成如下逻辑,当我们向文档库中上传文件时,我们使用工作流进行检查,只有以.docx和.doc为扩展名的文件才可上传,否则会自动删除。1.我们使用VS2008进行开发。工作流设计如下图:IfElse活动的isValid的分支条件如下:this.fileExtension.ToLower() == "docx" || this.fileExtension.ToLower() == "doc"2.工作流中各个CodeActivity的代码如下:namespaceCaryFileInfo{publicsealedpartialclassWorkflow1: 阅读全文
摘要:
SharePoint的文档库是根据数据库虚拟出来的,以HTTP形式呈现,因要创建一个页面单独实现上传功能,故对于其存储和呈现机制进行了学习和研究,不过网络上相关资料还真是很少。SharePoint个人觉得还是比较适合不需要进行复杂逻辑功能的二次开发的网站构建,即适合一般基于office组件的功能门户,能够极大提高效率。以下代码能够实现往文档库下层目录上传文件的功能,主要还是参考网络上其他文章usingSystem.IO;usingMicrosoft.SharePoint;usingSystem.Web;namespaceConsoleApplication1{classProgram{st.. 阅读全文
摘要:
新公司,新工作试着用sql 存储过程写调用,所有结果都返回XML数据集,这是第一个成品,贴出来以做留念.1--=============================================2--Author:<tanke>3--Createdate:<2007-4-17>4--Description:<统计访问量和综合浏览量>5--execsp_sys_Master'<?xmlversion="1.0"encoding="unicode"?><reportaction=" 阅读全文
摘要:
Sharepoint List Attachments in a Webpart : The SolutionIt's not a headache until you can do without it, but to use the sharepoint's attachment controls can be a pain in you know what. Try the solution below and save your self from same.~Adding attachment Functionality in a Web Part.//Attachm 阅读全文