摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.IO;using System.Net;using System.Globalization;namespace TalkReportDetail{ public class FtpOpt { string ftpServerIP; string ftpRemotePath; string ftpUserID; string ftpPass... 阅读全文
posted @ 2012-09-25 18:56 瑟秋先生 阅读(845) 评论(0) 推荐(0) 编辑
摘要: 很多人有这种情况,mvc3只能存放在默认网站下~其实mvc3是可以存放在虚拟目录下的,可能有脚本路径,或者其他提交路径的原因。那么。只要修改一下访问路径就行了~ <link href="/ixxx/Content/css/tabs.css" rel="stylesheet" type="text/css" /> <script src="/ixxx/Scripts/uitl/ajaxfileupload.js" type="text/javascript"></sc 阅读全文
posted @ 2012-08-17 12:08 瑟秋先生 阅读(459) 评论(0) 推荐(0) 编辑
摘要: 偶尔会遇到这种情况:服务需要一个无限制的循环。这样的话就会出现,服务启动有问题,启动到最后会报错。于是:可以尝试使用线程来运行我使用了Log4记录异常。来防止出现异常导致服务停止的情况。using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Diagnostics;using System.Linq;using System.ServiceProcess;using System.Text;using System.Threading;usi 阅读全文
posted @ 2012-07-17 18:21 瑟秋先生 阅读(427) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Net; //使用 httpwebresponse 等类库using System.IO; // 序列化using System.Text; //文本namespace MyTestHttpWebRequest { public class Test { /// <summary> /// 消息提交 /// </summary> /// <param name="str">需要提交的内容</param> ... 阅读全文
posted @ 2012-07-09 10:34 瑟秋先生 阅读(779) 评论(0) 推荐(0) 编辑