上一页 1 2 3 4 5 6 7 8 9 10 ··· 17 下一页
摘要: 读取网页Reponse数据,下面是一个浪驰短信的实例 public static string HttpSMSPost(HttpWebRequest hr, string url, string parameters) { string strRet = null; ASCIIEncoding encoding = new ASCIIEncoding(); byte[] data = encoding.GetBytes(parameters); try { ... 阅读全文
posted @ 2012-07-09 11:23 gzh4455 阅读(210) 评论(0) 推荐(0) 编辑
摘要: 在网上也没有认真找一下其API及操作说明文档,到时看到再Mark一下,下面是一个生成Doc的实例代码 DocumentBuilder builder = new DocumentBuilder(); builder.ParagraphFormat.Alignment = ParagraphAlignment.Left; builder.Writeln("helloword");//标题 builder.PageSetup.ClearFormatting(); builder.Write("OOOk");//内容 bu... 阅读全文
posted @ 2012-07-08 16:03 gzh4455 阅读(502) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2012-07-08 14:21 gzh4455 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 看到一个添加图片到图片库里的代码,代码如下: public string InsertImage() { try { if (this.FileUpload3.PostedFile.ContentLength != 0) { SPWeb web = SPContext.Current.Web; web.AllowUnsafeUpdates = true; SPList list = web.Lists["照片"]; ... 阅读全文
posted @ 2012-07-07 16:40 gzh4455 阅读(439) 评论(1) 推荐(0) 编辑
摘要: 许多新的PowerShell 程序员可能会陷入没有引用SharePoint PowerShell snap-in 的困境。以下代码列举了如何避免陷入这样的困境。$snapin = Get-PSSnapin | where-object { $_.Name -eq'Microsoft.SharePoint.PowerShell' }if ($snapin -eq $null){write-host "Loading SharePoint PowerShell Snapin..." -foregroundcolor Blueadd-pssnapin " 阅读全文
posted @ 2012-07-07 16:00 gzh4455 阅读(317) 评论(1) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2012-07-04 21:05 gzh4455 阅读(2) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2012-07-04 21:02 gzh4455 阅读(1) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2012-07-02 10:59 gzh4455 阅读(3) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2012-07-02 10:40 gzh4455 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 基础就不说了,下面是直接贴源代码 (function ($) { $.extend($, { fixedWidth: function (str, length, char) { str = str.toString(); if (!char) { char = "..."; } var num = length - lengthB(str); if (num < 0) { ... 阅读全文
posted @ 2012-07-01 20:10 gzh4455 阅读(136) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 17 下一页