摘要: webService使用代码生成visual studio cmd窗口:C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC>wsdl.exe /l:cs /out:D:/ProxyServices.cs http://localhost:80... 阅读全文
posted @ 2014-12-24 16:32 天VS涯2012 阅读(226) 评论(0) 推荐(0)
摘要: 如图html代码 alt用于放要显示的内容 ... 阅读全文
posted @ 2014-12-06 11:14 天VS涯2012 阅读(278) 评论(0) 推荐(0)
摘要: 关于文件下载,很多都是用href='文件地址',这样做是很不安全的,所以需要使用到文件流,以下代码用于下载一张图片。 Response.BufferOutput = false; Response.Clear(); Response.ContentType = "... 阅读全文
posted @ 2014-12-03 21:09 天VS涯2012 阅读(208) 评论(0) 推荐(0)
摘要: private string PostData(string serverName,string postData) { postData = "body="+postData; UTF8Encoding encoding = new UTF8Encoding();... 阅读全文
posted @ 2014-12-02 13:39 天VS涯2012 阅读(444) 评论(0) 推荐(0)
摘要: xml字符串转为DataTable与Jsonusing System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Xml;using System.Text;using System... 阅读全文
posted @ 2014-12-01 23:57 天VS涯2012 阅读(225) 评论(0) 推荐(0)