摘要:
以下是一个ajax的post例子。代码为script部分 jQuery之ajax post篇------Code Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> 阅读全文
摘要:
坚决拖泥带水 -----萧佰刚 既然没有希望, 又何给人幻想, 痛要痛的彻底, 爱要爱的疯狂。 曾今的你, 我已早已遗忘. 不仅忘却, 蜘蛛式的情网, 而且祈祷, 快餐式的死亡, 如今的我, 还是那么狂妄, 不仅思念, 象牙式的乳房, 而且渴望, 自由式的解放, 我们知道, 在玩拖泥带水的谜藏, 捉弄的彼此遍体淋伤。 ... 阅读全文
摘要:
由于家住在五楼,晚上我的精品白沙烟抽完了.然而自己不想下楼去商店买,于是委托我的朋友去买.打算买10包. using System; using System.Collections.Generic; using System.Text; namespace BuyCigarette { class Program { static void Main(st... 阅读全文
摘要:
项目介绍: Client:客户端 WebService:服务器端 Common:通用压缩类 DataSetSurrogate:通过Surrogate 进行数据集二进制序列化 项目总结: 项目用到的WebService 压缩方法 * 方法一:webmethod直接返回byte[] * 方法二:ICSharpCode 算法压... 阅读全文
摘要:
本学习资料来自 http://www.holygrace.cn http://www.cnblogs.com 下载:JQuery基础学习资料 阅读全文
摘要:
使用HTTP-GET方式访问 HTTP-GET方式访问#region HTTP-GET方式访问 private void button1_Click(Object sender,System.EventArgs e) { System.Net.HttpWebRequest Req; string strGet="http://localhost/HelloWord?name="; ... 阅读全文
摘要:
启动更新程序执行文件 private void button2_Click(object sender, System.EventArgs e) { string updateAppPath = Common.AppStartPath + @"\AutoUpdate.exe"; if(!File.Exists(updateAppPat... 阅读全文
摘要:
C#查找指定文件夹下指定后缀名的所有文件,用递归的方法解决这类问题 代码一:用ArrayList转化为string[]保存指定后缀名文件 最后Foreach循环输出或绑定 using System; using System.Data; using System.Configuration; using System.Collections; using System.Web; using Sy... 阅读全文
摘要:
异步调用委托的3种方法 using System; using System.Collections.Generic; using System.Text; namespace AsyncDelegate { class Program { delegate int IntIntDelegate(int x);//生明一个委托 int Squ... 阅读全文
摘要:
下面这段程序演示了Timer类的用法。 using System; using System.Threading; class TimerExampleState { public int counter = 0; public Timer tmr; } class App { public static void Main() { Timer... 阅读全文