摘要:
1 界面如下 2 关键代码如下 var reqStr = txtInput.Text.Trim();//输入字符串 var resStr = "";//输出结果 var errMsg = ""; if (reqStr.Length > 0) { try { //针对复杂实体对象或Dictionary 阅读全文
摘要:
引用百度百科:https://baike.baidu.com/item/%E5%86%B2%E7%AA%81%E7%AE%A1%E7%90%86/10846015?fr=aladdin 五种冲突管理风格根据组织成员介入冲突的方式,研究者区分了五种冲突管理风格。每种风格均可用两个维度上的不同水平组合来 阅读全文
摘要:
CREATE TABLE [dbo].[tbl_province]( [codeid] [int] NULL, [parentid] [int] NULL, [cityName] [nvarchar](50) NULL, ) ON [PRIMARY] goinsert into tbl_provin 阅读全文
摘要:
1.html界面 <form action="" method="get"> <div class="form-group"> <div class="col-sm-3"> <label class="control-label">集团</label> </div> <div class="col- 阅读全文
摘要:
1、默认为form提交表单 . button则响应用户自定义的事件,如果不指定onclick等事件处理函数,它是不做任何事情.当然,button也可以完成表单提交的工作. 2、method="get",表单在提交时,填写在表单中的数据会和action="url"中的url编码在一起。 method= 阅读全文
摘要:
1.定义表结构 DataTable DT = new DataTable(); DT.Columns.AddRange(new[] { new DataColumn("YDNo",typeof(string)), new DataColumn("Company",typeof(string)), n 阅读全文
摘要:
一、DataGridView数据转成DataTable 1.已绑定过数据源:DataTable dt = (dataGridView1.DataSource as DataTable) 2.未绑定过数据源:public DataTable GetDgvToTable(DataGridView dgv 阅读全文
摘要:
1.创建自定义DataTable /// 创建自定义DataTable(一) 根据列名字符串数组, /// </summary> /// <param name="sList">列名字符串数组</param> /// <returns>DataTable</returns> public stati 阅读全文
摘要:
20、SUM()和 列+ 统计结果时:如果列里有一行为null,SUM函数会忽略它;如果+,则结果集也为NULL了 19 SUBSTRING (expression,startIndex, endIndex) SELECT SUBSTRING ('Los Angeles',1, 3) 返回结果Los 阅读全文