博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2018年2月22日

摘要: 最简单的方法: 安装WinSCP或者Filezilla, 启动该程序,然后自己输入输入主机名、端口、用户名、密码登录,然后在putty里面用pwd命令看看当前目录,再在WinSCP/Filezilla中跳转到那个目录去,再传送文件. WinSCP界面(commander风格.另外还支持explore 阅读全文

posted @ 2018-02-22 01:48 火冰·瓶 阅读(1096) 评论(0) 推荐(0) 编辑

摘要: 1、Ubuntu 上 安装NET Core 2.0 SDK 第一步的安装,微软大佬已经写的非常详细了=》直达链接,按照教程来即可。 2、将我们的WEB 发布到一个文件夹,将这个文件夹打包成 压缩文件,准备上传。 3、通过Xshell ssh 连接到 服务器(ps:如果不知道怎么用Xshell的请自行 阅读全文

posted @ 2018-02-22 01:47 火冰·瓶 阅读(351) 评论(0) 推荐(0) 编辑

2018年2月19日

摘要: public static class XSerializer { /// /// 将对象序列化为xml字符串 /// /// 类型 /// 对象 public static string ObjectToXml(T t) where T : class { ... 阅读全文

posted @ 2018-02-19 19:45 火冰·瓶 阅读(119) 评论(0) 推荐(0) 编辑

摘要: private static void Log(string content, string fileName="log.txt") { string logsPath = AppDomain.CurrentDomain.BaseDirectory + "\\App_Code\\logs\\"; string fil... 阅读全文

posted @ 2018-02-19 19:44 火冰·瓶 阅读(145) 评论(0) 推荐(0) 编辑

摘要: public static string HttpGet(string Url, string postDataStr) { HttpWebRequest request = (HttpWebRequest)WebRequest.Create(Url + (postDataStr == "" ? "" : "?") + postDataSt... 阅读全文

posted @ 2018-02-19 09:58 火冰·瓶 阅读(117) 评论(0) 推荐(0) 编辑

摘要: private string MD5(string str) { byte[] result = Encoding.Default.GetBytes(str); //tbPass为输入密码的文本框 MD5 md5 = new MD5CryptoServiceProvider(); byt... 阅读全文

posted @ 2018-02-19 09:54 火冰·瓶 阅读(110) 评论(0) 推荐(0) 编辑

摘要: /// /// 10位时间戳转为C#格式时间 /// /// /// public static DateTime ConvertStringToDateTime(string timeStamp) ... 阅读全文

posted @ 2018-02-19 09:53 火冰·瓶 阅读(534) 评论(0) 推荐(0) 编辑

2018年2月17日

摘要: 记录中 参考: https://www.cnblogs.com/songxingzhu/p/7399991.html https://www.cnblogs.com/goodfulcom/p/7624674.html https://docs.microsoft.com/en-us/dotnet/c 阅读全文

posted @ 2018-02-17 00:14 火冰·瓶 阅读(146) 评论(0) 推荐(0) 编辑

2018年2月16日

摘要: 使用开源的类库Newtonsoft.Json(下载地址http://json.codeplex.com/)。下载后加入工程就能用。通常可以使用JObject, JsonReader, JsonWriter处理。这种方式最通用,也最灵活,可以随时修改不爽的地方。 (1)使用JsonReader读Jso 阅读全文

posted @ 2018-02-16 23:20 火冰·瓶 阅读(161) 评论(0) 推荐(0) 编辑

2010年11月30日

摘要: ext3.0之前都是这样来提交:var responsea = Ext.lib.Ajax.getConnectionObject().conn; responsea.open("POST", your url,false); responsea.send(null);alert("返回来的数据为:"+responsea.responseText);ext3之后好像不能这样提交了,这时候需要引入一个... 阅读全文

posted @ 2010-11-30 10:54 火冰·瓶 阅读(6445) 评论(0) 推荐(0) 编辑