随笔分类 -  Web相关

asp.net webform entityframework 部署到 centos mono
摘要:自己从事了多年的 asp.net web forms 开发,因酷爱 web forms 模型, 可以不用写 js, 不用写 sql , 甚至一个增删改查页面,只要设计好数据库结构,不用自己写一句代码(当然这个只适用于需求不是很复杂的场景),就可以完成。用它做中小型网站很快(尤其是单个页面逻辑极其复杂 阅读全文

posted @ 2020-04-22 17:44 空明流光 阅读(385) 评论(0) 推荐(1) 编辑

利用 httpmodule 强制所有页面使用同一基类
摘要:public class OMSPageChecker : IHttpModule { public void Dispose() { } public void Init(HttpApplication context) { context.PreRequ... 阅读全文

posted @ 2017-02-15 14:42 空明流光 阅读(251) 评论(0) 推荐(0) 编辑

log4net 自定义日志级别记录多个日志
摘要:程序中原来只记录一个日志,现在我要写一个用户操作日志,需要与原来的日志分开,在config文件中一阵折腾无果(要么写不全,要么写重了,反正没办法完美分离,要么与现存代码没办法完美兼容),差点放弃准备自己直接写txt文件了。 在网上看到可以写自定义filter,可以and可以or,那还有什么事情是搞不 阅读全文

posted @ 2017-02-14 14:54 空明流光 阅读(1218) 评论(0) 推荐(0) 编辑

GridView 行单击或双击事件绑定
摘要:protected void gvTeacherTaskList_RowCommand(object sender, GridViewCommandEventArgs e) { if (e.CommandName == "ShowDetail") { } ... 阅读全文

posted @ 2016-12-15 11:49 空明流光 阅读(2929) 评论(0) 推荐(0) 编辑

Sharepoint CAML 增删改查 List
摘要:Lists.UpdateListItems 方法 (websvcLists) Windows SharePoint Services 3 Adds, deletes, or updates the specified items in a list on the current site.命名空间:... 阅读全文

posted @ 2014-10-21 10:04 空明流光 阅读(479) 评论(0) 推荐(0) 编辑

share point 2013 显示详细错误信息?
摘要:Wednesday, April 6, 2011 at 17:40 | Post a CommentSharePoint "Unknown Error": How to Show All theDetailsin Batch Automation / .NET Programmability, Ex... 阅读全文

posted @ 2014-09-05 17:13 空明流光 阅读(231) 评论(0) 推荐(0) 编辑

SharePoint入门识记
摘要:SharePoint站点层次结构:1.Web Application: 一般创建后对应一个IIS Web Site, 默认创建后是打不开的,因为网站没有任何内容。2.Site Collection: 一个Web Application 下通常可以包含多个SiteCollection,创建一个Site... 阅读全文

posted @ 2014-09-03 17:40 空明流光 阅读(263) 评论(0) 推荐(0) 编辑

SharePoint List 查看器
摘要:using Microsoft.SharePoint;using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Diagnostics;using ... 阅读全文

posted @ 2014-06-20 15:54 空明流光 阅读(421) 评论(0) 推荐(0) 编辑

share point 读取 List数据
摘要:SPSecurity.RunWithElevatedPrivileges(delegate() { using (SPSite oSite = new SPSite(siteUrl)) { ... 阅读全文

posted @ 2014-05-05 15:05 空明流光 阅读(359) 评论(0) 推荐(0) 编辑

share point 读取 metadata
摘要:private static void syncMetaData() { var siteUrl = @"http://..."; using (var site = new SPSite(siteUrl)) { ... 阅读全文

posted @ 2014-05-05 15:03 空明流光 阅读(154) 评论(0) 推荐(0) 编辑

Share Point 创建 TimerJob
摘要:public class SyncMetadataJob:SPJobDefinition { private const string JobName = @"Metadata Sync Job"; private int counter = 0; ... 阅读全文

posted @ 2014-05-05 14:59 空明流光 阅读(376) 评论(0) 推荐(0) 编辑

通过JavaScript更新UpdatePanel备忘
摘要:12http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">3http://www.w3.org/1999/xhtml">45 无标题页678 9 10 11 12 13 23 24 25 26 27 28 29 30 31321public partial class _Default : System.Web.UI.Page2{3 protected void Page_Load(object sender, EventArgs e)4 { //当前ScriptManager1回发的... 阅读全文

posted @ 2014-04-01 22:14 空明流光 阅读(208) 评论(0) 推荐(0) 编辑

asp.net 实现LRC歌词播放
摘要:这个其实很简单,此功能包含一个asp.net UserControl和asp.net引用页面。 LRCPlayer.ascx LRCPlayer.ascx.cs lrc.aspx lrc.aspx.cs 阅读全文

posted @ 2012-12-26 09:44 空明流光 阅读(335) 评论(0) 推荐(0) 编辑

导航