1,frameset放在一个HTML页面中,但是这个HTML页面中不能有body,因为他的每一个窗口里面都有body. 2,frameset标签里面可以设置框架的属性,如使用rows,或者cols来切割一个窗口成为多个窗口,但是每次只能使用这两个属性的一个,因为只允许你横着切,或者竖着切 如果要把框 ...
分类:
Web程序 时间:
2017-08-31 12:47:57
阅读次数:
180
Matrix 定义及基本运算 Transposing To "transpose" a matrix, swap the rows and columns. We put a "T" in the top right-hand corner to mean transpose: Inverse of ...
分类:
系统相关 时间:
2017-08-30 13:16:19
阅读次数:
225
import psycopg2def get_all_databasename(): databasenames = [] conn = get_connection("postgres") rows = excute_sql(conn,"select pg_database.datname fro ...
分类:
其他好文 时间:
2017-08-29 20:41:05
阅读次数:
257
private void dgvMaterial_CellContentClick(object sender, DataGridViewCellEventArgs e) { for (int i = 0; i < dgvMaterial.Rows.Count; i++) { DataGridVie... ...
1.使用explain语句去查看分析结果 如explain select * from test1 where id=1; 会出现:id selecttype table type possible_keys key key_len ref rows extra各列。 其中, type=const表 ...
分类:
数据库 时间:
2017-08-29 14:28:01
阅读次数:
208
默认在open(‘data.csv’,'w+')模式下会有空行。在open后面添加newline=‘’ 即可解决。 https://stackoverflow.com/questions/41045510/pandas-read-csv-ignore-rows-after-a-blank-line ...
分类:
编程语言 时间:
2017-08-27 11:56:20
阅读次数:
174
Every morning when they are milked, the Farmer John's cows form a rectangular grid that is R (1 <= R <= 10,000) rows by C (1 <= C <= 75) columns. As w ...
分类:
其他好文 时间:
2017-08-26 20:45:08
阅读次数:
281
SELECTCONCAT(table_schema,‘.‘,table_name)AS‘TableName‘,CONCAT(ROUND(table_rows/1000000,4),‘M‘)AS‘NumberofRows‘,CONCAT(ROUND(data_length/(1024*1024),2),‘MB‘)AS‘DataSize‘,CONCAT(ROUND(index_length/(1024*1024),2),‘MB‘)AS‘IndexSize‘,CONCAT(ROUND((data_length+in..
分类:
其他好文 时间:
2017-08-23 23:07:14
阅读次数:
219
[HttpPost] public JsonResult GetList() { List<SysSampleModel> list = m_BLL.GetList(""); var json = new { total = list.Count, rows = (from r in list se ...
分类:
Web程序 时间:
2017-08-23 22:59:33
阅读次数:
321