摘要:
string strName = "大 张 伟"; string str = Regex.Replace(strName, @"\s", ""); Response.Write("输出内容:" + str); 阅读全文
摘要:
MSDN:http://msdnwebcast.net/LigerUI框架:http://www.ligerui.com/MySql视频:http://www.dxzy163.com/view/index7627.html 阅读全文
摘要:
第一步: 第二步:public class Qlist{ private string _id; public string Id { ... 阅读全文
只有注册用户登录后才能阅读该文。 阅读全文
摘要:
第一步:建一个类(ConvertPdf.cs)存放此代码 public static class ConvertPdf { /// /// Word转换Pdf /// /// /// /// ... 阅读全文
摘要:
HTML代码: 内容: 阅读全文
摘要:
//产生随机数 function GetRandomNum(Min, Max) { var Range = Max - Min; var Rand = Math.random(); return (Min + Ma... 阅读全文
摘要:
/// /// 读取配置文件keys /// /// public string _GetKeys() { string filename = Server.MapPath("/") + @... 阅读全文
摘要:
第一步:写一个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... 阅读全文
摘要:
第一步:创建数据库,创建表,(添加、修改、删除)方法!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 阅读全文