上一页 1 ··· 8 9 10 11 12 13 下一页
摘要: string strName = "大 张 伟"; string str = Regex.Replace(strName, @"\s", ""); Response.Write("输出内容:" + str); 阅读全文
posted @ 2014-06-16 09:23 宇少vlog 阅读(758) 评论(0) 推荐(0) 编辑
摘要: MSDN:http://msdnwebcast.net/LigerUI框架:http://www.ligerui.com/MySql视频:http://www.dxzy163.com/view/index7627.html 阅读全文
posted @ 2014-06-10 10:47 宇少vlog 阅读(214) 评论(0) 推荐(0) 编辑
摘要: 第一步: 第二步:public class Qlist{ private string _id; public string Id { ... 阅读全文
posted @ 2014-06-09 13:26 宇少vlog 阅读(736) 评论(0) 推荐(0) 编辑
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2014-06-05 08:35 宇少vlog 阅读(158) 评论(4) 推荐(1) 编辑
摘要: 第一步:建一个类(ConvertPdf.cs)存放此代码 public static class ConvertPdf { /// /// Word转换Pdf /// /// /// /// ... 阅读全文
posted @ 2014-05-21 10:59 宇少vlog 阅读(2107) 评论(2) 推荐(0) 编辑
摘要: HTML代码: 内容: 阅读全文
posted @ 2014-05-19 13:37 宇少vlog 阅读(247) 评论(0) 推荐(0) 编辑
摘要: //产生随机数 function GetRandomNum(Min, Max) { var Range = Max - Min; var Rand = Math.random(); return (Min + Ma... 阅读全文
posted @ 2014-05-14 11:59 宇少vlog 阅读(141) 评论(0) 推荐(0) 编辑
摘要: /// /// 读取配置文件keys /// /// public string _GetKeys() { string filename = Server.MapPath("/") + @... 阅读全文
posted @ 2014-04-30 09:56 宇少vlog 阅读(442) 评论(0) 推荐(0) 编辑
摘要: 第一步:写一个SqliteDBHelper类 1 package com.example.gzznproject; 2 3 import android.content.ContentValues; 4 import android.content.Context; 5 import android.database.Cursor; 6 import android.database.sqlite.SQLiteDatabase; 7 import android.database.sqlite.SQLiteOpenHelper; 8 9 public class Sqli... 阅读全文
posted @ 2014-04-10 11:29 宇少vlog 阅读(531) 评论(0) 推荐(0) 编辑
摘要: 第一步:创建数据库,创建表,(添加、修改、删除)方法!package example.gznprojklc;import android.content.ContentValues;import android.content.Context;import android.database.sqlite.SQLiteDatabase;import android.database.sqlite.SQLiteOpenHelper;public class SqliteDBHelper extends SQLiteOpenHelper { // 创建库 public static final St 阅读全文
posted @ 2014-04-10 11:01 宇少vlog 阅读(681) 评论(0) 推荐(1) 编辑
上一页 1 ··· 8 9 10 11 12 13 下一页