会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
玛雅空间
---欢迎朋友
博客园
首页
新随笔
联系
订阅
管理
[置顶]
IIS8.5 安装证书
摘要: 问题:iis8.5 导入证书后消失(在IIS中不可见,在证书管理中可以看到,显示缺少私钥)。也可使使用工具查看证书的安装情况 解决方案:参考: openSSL 命令: openssl pkcs12 -export -out output.pfx \ -inkey server.key \ -in s
阅读全文
posted @ 2025-10-10 13:16 玛雅人
阅读(24)
评论(0)
推荐(0)
[置顶]
SPEmailEventReceiver的使用(2)问题总结
摘要: 1、默认List不接收Mail, Document Library 接收2、默认的Document Library的接收Mail,是sharepoint自己实现的。 SPEmailEventReceiver的方法EmailReceived是空。 所以继承SPEmailEventReceiver后,要实现EmailReceived,不能base.SPEmailEventReceiver();(无反应...
阅读全文
posted @ 2009-11-05 17:38 玛雅人
阅读(427)
评论(0)
推荐(1)
[置顶]
Develop vsto in moss
摘要: 效果图:1、新建2、Excel3、详细介绍:1、保存:保存A4和B4的数据到DB并保存、关闭wookbook。2、GetData:从DB中取得数据3、SaveCLose 测试按钮工程和文档下载地址:http://download.csdn.net/source/1760926
阅读全文
posted @ 2009-10-22 14:10 玛雅人
阅读(208)
评论(0)
推荐(0)
[置顶]
SPGridview的使用
摘要: 参考URL:http://www.cnblogs.com/jianyi0115/archive/2008/04/03/1136816.html实现后的代码:http://filterwebpart.codeplex.com/
阅读全文
posted @ 2009-04-10 17:04 玛雅人
阅读(446)
评论(0)
推荐(0)
[置顶]
Custom Field Sample
摘要: 最近做了一个Custom Field我认为还不错其中使用了很多JS。若是大家有空看,希望多多提意见。不足:在Custom Field中 不知道如何使用客户端脚本注册函数例如: Page.ClientScript.RegisterClientScriptBlock Page.ClientScript.RegisterClientScriptInclude Page.ClientScript....
阅读全文
posted @ 2009-04-02 12:33 玛雅人
阅读(381)
评论(1)
推荐(0)
2018年6月14日
Kendo 计算字段
摘要: var Product = kendo.data.Model.define({ fields: { "quantity": { type: "number" }, "price": { type: "number" } }, total: function() { //define the calc
阅读全文
posted @ 2018-06-14 16:41 玛雅人
阅读(128)
评论(0)
推荐(0)
2018年6月13日
Kendo UI 的 k-template
摘要: 官网上的例子: 1. <span id="output"></span><script>var template = kendo.template("#if (foo) {# foo is true #}#");var data = { foo: true };$("#output").html(t
阅读全文
posted @ 2018-06-13 15:04 玛雅人
阅读(552)
评论(0)
推荐(0)
2017年6月29日
UpdatePanel中用后台CS代码调用JS代码,先执行控件事件,后触发JS
摘要: 引用地址: http://www.cnblogs.com/silenkee/articles/1609831.html 页面中加入了UpdatePanel后,Response.Write("<script>function dis (){alert('这是调用写在server的JS');}</scr
阅读全文
posted @ 2017-06-29 17:21 玛雅人
阅读(254)
评论(0)
推荐(0)
2017年4月19日
SQL常用
摘要: --1.创建schema create schema exp --2.把dbo下面的对象e_A,移到exp下面 alter schema exp transfer dbo.e_A --3分组字符串拼接 select id, [values]=stuff((select ','+[value] fro
阅读全文
posted @ 2017-04-19 17:18 玛雅人
阅读(202)
评论(0)
推荐(0)
2016年11月19日
Node.js 安装
摘要: Node.js安装
阅读全文
posted @ 2016-11-19 20:28 玛雅人
阅读(131)
评论(0)
推荐(0)
2013年9月29日
生成缩略图
摘要: 1. 关键函数/// /// 生成缩略图/// /// 源图路径(物理路径)/// 缩略图路径(物理路径)/// 缩略图宽度/// 缩略图高度/// 生成缩略图的方式 public static void MakeThumbnail(string originalImagePath, string thumbnailPath, int width, int height,ImageTransformMode mode){ Image originalImage = Image.FromFile(originalImagePath); int towidth = width; ...
阅读全文
posted @ 2013-09-29 17:02 玛雅人
阅读(236)
评论(0)
推荐(0)
2013年9月27日
有用的JS函数
摘要: 1. QueryStringfunction queryString(key) { var re = new RegExp("[?&]" + key + "=([^&$]*)", "i"); var offset = window.location.search.search(re); if (offset == -1) return ""; return RegExp.$1;};2. IFrame页面,返回父页面(如果A页面是IFrame内的页面,不想让其单独显示) if (top &&a
阅读全文
posted @ 2013-09-27 10:28 玛雅人
阅读(219)
评论(0)
推荐(0)
2012年11月14日
vs2010 mvc3
摘要: vs2010 mvc3的方法下载链接如下:MVC 3安装包:http://www.microsoft.com/downloads/zh-cn/details.aspx?familyid=d2928bc1-f48c-4e95-a064-2a455a22c8f6&displaylang=zh-cnVS工具更新包:http://www.microsoft.com/downloads/zh-cn/details.aspx?familyid=82cbd599-d29a-43e3-b78b-0f863d22811a&displaylang=zh-cn注:并不需要安装vs2010的sp1。
阅读全文
posted @ 2012-11-14 16:27 玛雅人
阅读(834)
评论(0)
推荐(0)
2011年5月14日
运算符 || &&
摘要: javascript中的||和&&不只是用于逻辑运算,1、如果运算符两端一个为空值(null或者undefined),另一端不为空,则||运算返回不为空的值,&&运算返回那个空值。如果还不明白的话,你可以试试一下语句:alert(null||'a')alert(null&&'a')2、如果两端都为空,||返回后者。&&返回前者。4、如果两端都不为空,||返回前者,&&返回后者。
阅读全文
posted @ 2011-05-14 21:31 玛雅人
阅读(194)
评论(0)
推荐(0)
下一页
公告