摘要:
方法一、父页面用window.open 在子页面中插入js代码window.onbeforeunload=function freshParent(){if(event.clientX>360&&event.clientY<0||event.altKey){window.opener.location.href = window.opener.location.href;if(window.opener.progressWindow){window.opener.progressWindow.close();}window.close(); }}if(event.c 阅读全文
摘要:
dataset是数据集,数据集里包含datatable,还有数据表之间的关系等,一个数据集可以不包含表,一个或多个datatable表。 datatable是数据表,它有列columns,行rows等。DataView是视图 DataView用来创建DataTable中所存储数据的不同视图,通常用于数据绑定 DataView DV = ds.Tables["表名"]... 阅读全文