摘要:
最近由于工作需要,研究了下Winform的WebBrowser控件,在这里给大家分享下。 1、WebBrowser导航 WebBrowser在进行导航的时候需要用到Navigate(string urlString)方法 2、执行已有的JavaScript函数 使用WebBrowser.Docume 阅读全文
摘要:
关于sql连接语句中的Integrated Security=SSPI 解决方法: 即:Security Support Provider Interface 设置Integrated Security为 True 的时候,连接语句前面的 UserID, PW 是不起作用的,即采用w... 阅读全文
摘要:
原文地址:http://blog.csdn.net/smartsmile2012/article/details/22167179privatevoidbutton1_Click(objectsender,EventArgse){//Sqlite使用事务批量操作极大的提高速度DateTimestar... 阅读全文
摘要:
原文地址:http://www.cnblogs.com/1971ruru/archive/2012/12/12/2814853.html最近在做第三方支付,用到了ISO8583包,因为有些域需要特定的格式,所以把常用的都搬过来了,以备不时之需,知识是无限的,大脑也是无限的。C货币2.5.ToStri... 阅读全文
摘要:
SQLite分页显示: Select * From news order by id desc Limit 10 Offset 10这篇文章是根据 SQLite 官方 WIKI 里的内容翻译,如果有什么翻译不当的地方希望大家指出,毕竟我的英文水平实在很差。 SQLite 包括以下五个时间函数:dat... 阅读全文
摘要:
ComboBox样式: ... 阅读全文
摘要:
using System;using System.Collections.Generic;using System.ComponentModel;using System.Drawing;using System.Data;using System.Text;using System.Window... 阅读全文
摘要:
var array = [];//显示按优惠金额层$("#showAmountDiv").click(function () { showDiv("amountDiv");});//显示按优惠百分比层$("#showPercentDiv").click(function () { sho... 阅读全文
摘要:
1、查询Student表中的所有记录的Sname、Ssex和Class列。select sname,ssex,class from studentLinq: from s in Students select new { s.SNAME, s.SSEX, s.CLASS }Lambda: Stude... 阅读全文
摘要:
关于Embedded Resource的理解2012-02-26 22:28 by Ecin,471阅读,0评论,收藏,编辑Embedded Resource.NET中使用外部资源时常用的方式都是使用资源文件,作为程序集的一部分发布。资源文件的读取也比较方便,字符串、图片和任何二进制数据,包括任何类... 阅读全文