摘要:
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.IO;using System.Reflection;using System.Runtime.InteropServices;namespace DealWithHtml{ public partial class E. 阅读全文
摘要:
1、FACTORY 工厂方法追MM少不了请吃饭了,麦当劳的鸡翅和肯德基的鸡翅都是MM爱吃的东西,虽然口味有所不同,但不管你带MM去麦当劳或肯德基,只管向服务员说“来四个鸡翅”就行了。麦当劳和肯德基就是生产鸡翅的Factory 工厂模式:客户类和工厂类分开。消费者任何时候需要某种产品,只需向工厂请求即可。消费者无须修改就可以接纳新产品。缺点是当产品修改时,工厂类也要做相应的修改。如:如何创建及如何向客户端提供。2、BUILDER建造者模式MM最爱听的就是“我爱你”这句话了,见到不同地方的MM,要能够用她们的方言跟她说这句话哦,我有一个多种语言翻译机,上面每种语言都有一个按键,见到MM我只要按对应 阅读全文
摘要:
/// /// 清除html中的标记,只留下文字。/// /// /// public string ClearHTMLTags(string HTML){ if (string.IsNullOrEmpty(HTML)) return ""; string[] Regexs ={ @"", @"", //@"([\r\n])[\s]+",//换行 @"&(quot|#34);", @"&(amp|#38);", @"&(lt|#60);&qu 阅读全文
摘要:
public bool ExportFile(System.Data.DataTable dt){ SaveFileDialog sfd = new SaveFileDialog(); sfd.Filter = "Excel文件(*.xls)|*.xls|所有文件(*.*)|*.*"; sfd.Title = "Excel文件导出"; string fileName = ""; if (sfd.ShowDialog() == DialogResult.OK) { fileName = sfd.FileName; Excel.Appli 阅读全文
摘要:
private void button2_Click(object sender, EventArgs e){ string file = ""; OpenFileDialog openFileDialog = new OpenFileDialog(); openFileDialog.InitialDirectory = "c:\\";//注意这里写路径时要用c:\\而不是c:\ openFileDialog.Filter = "Html|*.html|Mht|*.mht|htm|*.htm"; openFileDialog.Rest 阅读全文
摘要:
--存储数据:List<string> keyList = new List<string> { "a", "b", "c" };foreach (string key in keyList){ AppDomain.CurrentDomain.SetData(key, key + key);}--取数据foreach (string key in keyList){ object obj = AppDomain.CurrentDomain.GetData(key); Console.WriteLine(obj. 阅读全文
摘要:
Console.WriteLine(System.DateTime.Now.ToString("yyyy-MM-dd HH-mm-ss-ffff")); 阅读全文
摘要:
<?xmlversion="1.0"encoding="utf-8"?><configuration><system.servicemodel><services><servicename="EssentialWCF.StockService"behaviorConfiguration="myServiceBehavior"><host><baseaddresses><addbaseaddress="http://l 阅读全文
摘要:
1,先手动添加一个类库,然后在里面加上你的契约与服务如例子中的WCFServices项目2,新建一个 ASP.NET空网站3,在网站上引用你第一步加的类库4,配置Web.config文件主要配置如下(在<system.serviceModel>下): <!--无svc文件的映射--> <serviceHostingEnvironment multipleSiteBindingsEnabled="true"> <serviceActivations> <add relativeAddress="WCFServic 阅读全文
摘要:
写了一个简单的WCF服务,发布到IIS后各种问题(VS2010,Win7)问题:由于扩展配置问题而无法提供您请求的页面。如果该页面是脚本,请添加处理程序。如果应下载文件,请添加 MIME 映射。解决方法:1,找到此文件,并执行C:\Windows\Microsoft.NET\Framework\v3.0\Windows Communication Foundation/ServiceModelReg.execd C:\Windows\Microsoft.NET\Framework\v3.0\Windows Communication FoundationServiceModelReg -i2. 阅读全文