只有注册用户登录后才能阅读该文。 阅读全文
摘要:
"minwidth=50", //列的最小宽度"useRp=true",//是否可以动态设置每页显示的结果数"rp=20", // results per page,每页默认的结果数"rpOptions=[10, 20, 30, 40, 50]", //可选择设定的每页结果数"showth=true",//显示表头"title=测试",//标题"singleselected=false",//是否单选"resizable=false", 阅读全文
摘要:
View Code //获取C#数据类型public string GetCSharpType(ColumnSchema column){ if (column.Name.EndsWith("TypeCode")) return column.Name; switch (column.DataType) { case DbType.AnsiString: return "string"; case DbType.AnsiStringFixedLength: return "string"; case DbType.Binary... 阅读全文
摘要:
MicrosoftVisualStudio2008->VisualStudioTools->VisualStudio2008命令提示进入Common7\IDE,然后输入:devenv.exe /setup /resetuserdata /resetsettings然后重启VS2008 阅读全文
摘要:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf 阅读全文
摘要:
Request.ServerVariables("Url") 返回服务器地址Request.ServerVariables("Path_Info") 客户端提供的路径信息Request.ServerVariables("Appl_Physical_Path") 与应用程序元数据库路径相应的物理路径Request.ServerVariables("Path_Translated") 通过由虚拟至物理的映射后得到的路径Request.ServerVariables("Script_Name") 执行 阅读全文
摘要:
Help > Install New Software... > select Indigo - http://download.eclipse.org/releases/indigo > Collaboration 阅读全文
摘要:
ADT:https://dl-ssl.google.com/android/eclipse/SDK:http://developer.android.com/sdk/index.html 阅读全文
摘要:
IPLocation.QQWry qqwry = new IPLocation.QQWry("Data/QQWry.Dat"); IPLocation.QQWry.IPLocation loc = qqwry.GetAreaByIP(ip.ToString()); loc.Country + " " + loc.Area下载文件 阅读全文
摘要:
System.Runtime.Serialization.Json.DataContractJsonSerializer示例:using (MemoryStream ms = new MemoryStream()) { System.Runtime.Serialization.Json.DataContractJsonSerializer json = new System.Runtime.Serialization.Json.DataContractJsonSerializer(typeof(T)); ... 阅读全文