上一页 1 ··· 53 54 55 56 57 58 59 60 61 ··· 69 下一页
摘要: public static string path = "LDAP://192.168.8.1"; public static string admin = "administrator"; public static string pwd = ""; public static DirectoryEntry createDirectoryEntry(string admin, string pwd) { DirectoryEntry ldapConnection = new DirectoryEntry(... 阅读全文
posted @ 2012-12-21 09:48 zyip 阅读(214) 评论(0) 推荐(0)
摘要: textbox.maxlength可以限定输入内容的长度,但是如果想更精细地实现限定ansi字符串的长度该如何实现呢?ansi编码下,中文占2字节,英文1字节,textbox.maxlength无法限定混有中英文的ansi字符串。考虑一般情况下限定输入长度的方法:1.maxlength2.在KeyPress事件中处理3.在TextChanged中处理Dim oldTxt = "" Private Sub txtSingleTxt_TextChanged(sender As System.Object, e As System.EventArgs) Handles txtSi 阅读全文
posted @ 2012-12-13 12:53 zyip 阅读(352) 评论(0) 推荐(0)
摘要: http://technet.microsoft.com/zh-cn/library/cc263462.aspx 阅读全文
posted @ 2012-11-28 13:55 zyip 阅读(116) 评论(0) 推荐(0)
摘要: No provisioned iOS devices are available with a compatible iOS version. Connect an iOS device with a recent enough version of iOS to run your application or choose an iOS simulator as the destination.1.选择与ios设备同版本的sdk2.在organizer中启用设备的debug模式,确保设备指示为绿色 阅读全文
posted @ 2012-11-07 19:22 zyip 阅读(1995) 评论(0) 推荐(1)
摘要: http://office.microsoft.com/zh-cn/sharepoint-designer-help/HA010100587.aspxhttp://office.microsoft.com/zh-cn/sharepoint-server-help/HA010154425.aspxhttp://office.microsoft.com/zh-cn/sharepoint-server-help/HA010154429.aspxhttp://technet.microsoft.com/zh-cn/library/ee704556.aspxhttp://msdn.microsoft.c 阅读全文
posted @ 2012-10-26 16:59 zyip 阅读(154) 评论(0) 推荐(0)
摘要: http://bbs.weiphone.com/read-htm-tid-1403680.html 阅读全文
posted @ 2012-10-10 16:13 zyip 阅读(198) 评论(0) 推荐(0)
摘要: http://bbs.weiphone.com/read-htm-tid-4008975.html 阅读全文
posted @ 2012-10-10 12:51 zyip 阅读(164) 评论(0) 推荐(0)
摘要: https://developer.apple.com/downloads/index.action?name=Xcode 阅读全文
posted @ 2012-10-07 14:20 zyip 阅读(122) 评论(0) 推荐(0)
摘要: http://cnblogs.com/oracoo/http://www.cnblogs.com/oracoo/archive/2012/07/08/2581899.html 阅读全文
posted @ 2012-10-06 19:52 zyip 阅读(202) 评论(0) 推荐(0)
摘要: 1、直接Redirect后加 Controller/ActionResponse.Redirect("/User/Edit"); // return Redirect("/User/Edit"); return RedirectToAction("about","Home");Response.Redirect("/User/Edit");2、直接return后加 Controller/Action return Redirect("/User/Edit"); 3、Redir 阅读全文
posted @ 2012-09-26 14:33 zyip 阅读(288) 评论(0) 推荐(0)
上一页 1 ··· 53 54 55 56 57 58 59 60 61 ··· 69 下一页