会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
®Geovin Du Dream Park™
why we only heard about haves and have-nots, but we did'nt heard about doers and doer-nots. 人生是一种心境,生活是一种艺术,成功是一种心态,幸福是一种感觉,竞争是一种建构,情感是一种容合.学习是一种成长.
博客园
首页
新随笔
联系
管理
订阅
随笔分类 -
CSharp code
上一页
1
···
7
8
9
10
11
12
13
14
15
···
17
下一页
C#代码学习
Working C# code for MySql5.5 Stored Procedures IN parameters
摘要:MySQL5.5存储过程:#插入一条 涂聚文DELIMITER $$DROP PROCEDURE IF EXISTS `geovindu`.`proc_Insert_BookKindList` $$CREATE PROCEDURE `geovindu`.`proc_Insert_BookKindL...
阅读全文
posted @
2015-02-10 01:26
®Geovin Du Dream Park™
阅读(322)
评论(0)
推荐(0)
csharp:search and Compare string
摘要:http://blogs.msdn.com/b/kcwalina/archive/2004/06/22/162533.aspx http://www.dotblogs.com.tw/puma/archive/2009/05/28/asp.net-generic-list-sort-find-find
阅读全文
posted @
2015-02-07 15:56
®Geovin Du Dream Park™
阅读(623)
评论(0)
推荐(0)
csharp:datagridview enter Half Width and Full Width characters
摘要:/// /// 全角 /// /// /// public static string FullWidthConvertor(string unicodeString) { ...
阅读全文
posted @
2015-02-06 15:02
®Geovin Du Dream Park™
阅读(344)
评论(0)
推荐(0)
csharp: SQL Server 2005 Database Backup and Restore using C#
摘要:1.第一种方式: using SQLDMO;//Microsoft SQLDMO Object Library 8.0 /// /// 数据库的备份 /// 涂聚文注:数据库的备份和实时进度显示代码:(远程备份在数据库原本地,如果在数据库安装的电脑上备份,就可以自行选择...
阅读全文
posted @
2015-02-05 13:04
®Geovin Du Dream Park™
阅读(475)
评论(0)
推荐(0)
csharp: string Encoding
摘要:/// /// 中文转unicode /// /// /// public static string unicode_0(string str) { string outStr =...
阅读全文
posted @
2015-02-01 20:10
®Geovin Du Dream Park™
阅读(1578)
评论(0)
推荐(0)
csharp: using OleDb Getting the identity of the most recently added record
摘要:/// /// 执行SQL语句,返回影响的记录数 /// /// SQL语句 /// 影响的记录数 public static int ExecuteSql(string SQLString, params OleDbPara...
阅读全文
posted @
2014-12-29 23:09
®Geovin Du Dream Park™
阅读(302)
评论(0)
推荐(0)
csharp:Learn how to post JSON string to generic Handler using jQuery in ASP.Net C#.
摘要:/// ///參考: http://james.newtonking.com/json/help/index.html# /// 塗聚文(Geovin Du) 20141228 /// 捷為工作室 /// public partial class _Default...
阅读全文
posted @
2014-12-28 19:42
®Geovin Du Dream Park™
阅读(337)
评论(0)
推荐(0)
csharp: Aspose.Words create table
摘要:/// /// 20141118 /// Geovin Du /// Aspose.Words创建表 /// /// /// protected void Page_Load(object s...
阅读全文
posted @
2014-11-18 17:58
®Geovin Du Dream Park™
阅读(3438)
评论(0)
推荐(0)
String Control
摘要:using System;using System.Collections.Generic;using System.Text;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.Web...
阅读全文
posted @
2014-10-10 12:39
®Geovin Du Dream Park™
阅读(465)
评论(0)
推荐(1)
Create a soft keyboard
摘要:using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u...
阅读全文
posted @
2014-09-21 20:20
®Geovin Du Dream Park™
阅读(348)
评论(0)
推荐(1)
csharp: datagridview Convert csv file
摘要:/// /// 保存文件 /// 涂聚文 /// 2014-08-29 /// Geovin Du /// /// /// public static void DataGrid...
阅读全文
posted @
2014-08-29 11:08
®Geovin Du Dream Park™
阅读(1110)
评论(0)
推荐(1)
csharp: Getting all image files in folder
摘要:1 /// 2 /// 3 /// 4 /// 5 /// 6 protected void Page_Load(object sender, EventArgs e) 7 { 8 ...
阅读全文
posted @
2014-08-28 16:28
®Geovin Du Dream Park™
阅读(499)
评论(0)
推荐(0)
csharp: Converting chinese character to Unicode
摘要:Function chinese2unicode(Str) Dim Str_one:Str_one = "" Dim Str_unicode:Str_unicode = "" For i = 1 To Len(Str) Str_one = Mid(Str, i, 1...
阅读全文
posted @
2014-07-24 15:41
®Geovin Du Dream Park™
阅读(426)
评论(0)
推荐(0)
csharp: HttpWebRequest and HttpWebResponse
摘要:http://stackoverflow.com/questions/4015324/http-request-with-post Response.Charset = "GBK"; //GBK //gb2312 this.CodePage = 936; ...
阅读全文
posted @
2014-07-09 17:05
®Geovin Du Dream Park™
阅读(1189)
评论(0)
推荐(0)
csharp: QR Code Barcode
摘要:/// /// /// /// /// protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) ...
阅读全文
posted @
2014-07-08 14:52
®Geovin Du Dream Park™
阅读(712)
评论(0)
推荐(0)
csharp:DropDownComboxTreeView
摘要:using System;using System.Collections.Generic;using System.Text;using System.Drawing;using System.Resources;using System.ComponentModel;using System.W...
阅读全文
posted @
2014-06-30 23:24
®Geovin Du Dream Park™
阅读(585)
评论(0)
推荐(0)
csharp:.net 3.5 using System.Runtime.Serialization.Json read json
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;//http://msdn.mic...
阅读全文
posted @
2014-06-01 16:50
®Geovin Du Dream Park™
阅读(1241)
评论(0)
推荐(0)
csharp: using using System.Web.Script.Serialization read json
摘要:using System;using System.Data;using System.Configuration;using System.Collections;using System.Web;using System.Web.Security;using System.Web.UI;usin...
阅读全文
posted @
2014-06-01 15:49
®Geovin Du Dream Park™
阅读(1137)
评论(0)
推荐(0)
csharp:using Newtonsoft.Json.Net2.0 in .net 2.0 webform
摘要:/// /// http://www.weather.com.cn/data/sk/101280601.html /// {"weatherinfo":{"city":"深圳","cityid":"101280601","temp":"32","WD":"西南风","WS":"4级...
阅读全文
posted @
2014-06-01 14:02
®Geovin Du Dream Park™
阅读(687)
评论(0)
推荐(0)
csharp: Request.Form,Request.QueryString,Request.Params,Request.Cookies
摘要:/// /// Request.Form,Request.QueryString,Request.Params /// http://msdn.microsoft.com/en-us/library/system.web.httprequest.params(v=vs....
阅读全文
posted @
2014-05-28 17:41
®Geovin Du Dream Park™
阅读(922)
评论(0)
推荐(0)
上一页
1
···
7
8
9
10
11
12
13
14
15
···
17
下一页
公告