- 博客(23)
- 收藏
- 关注
转载 查询sql 索引
SELECT indexname = a.name , tablename = c. name , indexcolumns = d .name , a .indidFROM sysindexes a JOIN sysindexkeys b ON a .id = b .id AND a .indid = b.indid JOIN sysobjects c ON b...
2019-03-28 15:25:00 294
转载 查询SQL Server执行过的SQL语句
SELECTTOP1000ST.textAS'执行的SQL语句',QS.execution_countAS'执行次数',QS.total_elapsed_timeAS'耗时',QS.total_logical_readsAS'逻辑读取次数',QS.total_logical_w...
2019-03-13 10:10:00 151
转载 sqlserver查询所有表名、字段名、类型、长度和存储过程、视图的创建语句
-select * from sysobjects --select * from syscolumns--select * from syscomments--select * from systypes转载于:https://www.cnblogs.com/chenxiao/p/9542098.html
2018-08-27 14:41:00 225
转载 GDAL create kml
新增kml 点 public void WriteKmlPiont() { string driverName = "KML"; //MapInfo File OSGeo.GDAL.Gdal.SetConfigOption("GDAL_FILENAME_IS_UTF8", "NO"); /...
2014-07-29 16:47:00 573
转载 KML,SHP TAB互转,GDAL
最近在接触地图数据转换的东西,从硬件kml的数据转换其他的格式,因为从没做过着东西, 先去了解kml文件格式http://baike.baidu.com/view/400307.htm?fr=aladdin 原来是谷歌地球的一种数据格式,先大致看了写里面的标签,kml与xml文件差多, kml数据: longitude:经...
2014-05-19 16:24:00 749
转载 获取iframe 内容
parent.$.find("iframe")[0].contentWindow.getvalue(); h.find("iframe")[0].contentWindow.document.getElementById("tt").value;转载于:https://www.cnblogs.com/chenxiao/p/3640334.html...
2014-04-02 12:01:00 204
转载 ef mysql
App.config <configuration> <configSections> <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->...
2014-03-31 11:44:00 62
转载 mvc RedirectToAction、mobile 重定向地址栏未改变
@using(Html.BeginForm("actionName","controllerName",FormMethod.Post,new{data_ajax="false"})){ }主要是这一句:new{data_ajax="false"},当然也可以:<script type="text/javascript"> $(d...
2013-12-11 10:26:00 251
转载 js 转换大写金额
View Code function upperMoneys(num) { debugger; var strOutput = ""; var strUnit = '仟佰拾亿仟佰拾万仟佰拾元角分'; num += "00"; var intPos = num.indexOf('.'); if (intPos >= ...
2013-01-08 11:34:00 246
转载 javascript 实参对象 arguments
在函数体内,标识符arguments是指向实参对象的应用,实参对象是一个数组对象 ,这样就可以通过数字下标访问传入函数的实参值, 演示arguments 的用法View Code //查找最大值 function maxs() { var _max=Number.NEGATIVE_INFINITY; //负无穷大,溢出时返回该...
2012-12-02 20:31:00 145
转载 sql 测试时间
View Code 1 set statistics time on 显示分析、编译和执行各语句所需的毫秒数。2 3 4 select * from messages where id=11115 6 create index id_test_t1 on messages(id)7 select * from messages where id=11...
2012-11-12 20:53:00 60
转载 sql 修改字段
create table messages( id int not null identity, ) select * from messages alter table messages add [user] nvarchar(max) --增加字段 alter table messages add msg text n...
2012-11-03 11:23:00 58
转载 JQuery UI combogrid
jquery ui combogrid 查询jquery:View Code 1 $("#StallName").combogrid({ 2 panelWidth: 450, 3 idField: 'Value', 4 textField: 'Text', 5 pageSize: 10, //...
2012-10-23 13:44:00 287
转载 JQuery UI
View Code <script type="text/javascript"> $(function () { $('#test').datagrid({ title: 'My DataGrid', // 标题 iconCls: 'icon-save...
2012-10-23 13:40:00 92
转载 JQuery UI updateRow
更新指定的行,param参数包含下列特性:index:更新行的索引。row:行的新数据。 vargrid=$("#QualityAdd").datagrid("updateRow",{index:gridIndex,row:{Url:"<ahref=\"#\">"+r[0]....
2012-08-31 11:05:00 134
转载 linq to sql like
var predicate = PredicateBuilder.True<Shop_Product>(); 1. predicate = predicate.And(c => c.CommodityType.StartsWith(temmp)); 2. predicate = predicate.And(c => c.Commodi...
2012-08-15 15:37:00 155
转载 mvc
MVC服务Autofac 控制反转容器 先下载 Autofac dll, web.config 配置iis6 <httpModules><addname="ContainerDisposal"type="Autofac.Integration.Web.ContainerDisposalModule,Autofa...
2012-06-04 16:31:00 76
转载 jquery easyui tab
tab 新增 1 2 $("#add").click(function () { 3 index++; //新增tab 4 $("#tt").tabs('add', { 5 title: "New tab" + inde...
2012-05-31 17:06:00 68
转载 js json
js 解析 json $("#testJson").click(function () { var $json = "[{name:'张三',age:'12'},{name:'李四',age:15}]"; var test = eval($json); alert(tes...
2012-05-28 23:14:00 61
转载 jquery table
View Code 1 <table border=1 id="table6"> 2 <tbody id="tbody6"> 3 <tr class="template repeat"> 4 <td class="content">模板1</td...
2012-05-09 11:03:00 74
转载 JQuery UI
width:”200px”, //宽度title: null, // 标题.closeable: true, // 是否显示关闭按钮show: true, // 立即显示dialog?modal: f...
2012-04-25 15:23:00 81
转载 TagBuilder
MvcTagBuilder ToString()重载 ToString() <Lable id="test" style="color:blue">测试</Lable> ToString(TagBuilder.Normal) <Lable id="test" style="color:blue"&...
2012-04-24 10:57:00 101
转载 MVC
ChildActionOnly:它的目的主要就是让这个Action不通过直接在地址栏输入地址来访问,而是需要通过RenderAction来调用它。[ChildActionOnly]publicActionResultGenreMenu(){returnView();}...
2012-04-20 09:51:00 96
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人