会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
永恒的记忆
博客园
首页
新随笔
联系
管理
2014年12月24日
webservice 生成代理类
摘要: 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)
2014年12月6日
js图片轮播
摘要: 如图html代码 alt用于放要显示的内容 ...
阅读全文
posted @ 2014-12-06 11:14 天VS涯2012
阅读(278)
评论(0)
推荐(0)
2014年12月3日
关于网页下载文件,使用数据流方式下载
摘要: 关于文件下载,很多都是用href='文件地址',这样做是很不安全的,所以需要使用到文件流,以下代码用于下载一张图片。 Response.BufferOutput = false; Response.Clear(); Response.ContentType = "...
阅读全文
posted @ 2014-12-03 21:09 天VS涯2012
阅读(208)
评论(0)
推荐(0)
2014年12月2日
post传输数据给指定的url并返回值
摘要: 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)
2014年12月1日
xml转datatable和json
摘要: 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)