随笔分类 - IT技能
摘要:1 界面如下 2 关键代码如下 var reqStr = txtInput.Text.Trim();//输入字符串 var resStr = "";//输出结果 var errMsg = ""; if (reqStr.Length > 0) { try { //针对复杂实体对象或Dictionary
阅读全文
摘要: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.定义表结构 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
阅读全文
摘要:1、 checkbox点击事件 private void myStyleDataGridView1_CellClick(object sender, DataGridViewCellEventArgs e) { if (e.ColumnIndex == -1 || e.RowIndex == -1)
阅读全文
摘要:设置visual studio 保护视力主题背景色:84(色调),91(饱和度)205(亮点)
阅读全文
摘要:1、实际小窗体界面如下 2、代码如下 private void InputBox(string caption,string orderNo) { Form InputForm = new Form(); InputForm.MinimizeBox = false; InputForm.Maximi
阅读全文
摘要:1 public partial class UCRights : UserControl 2 { 3 private readonly int LOCATIONY; 4 private DataTable MENU = new DataTable(); 5 private BLL.User oUs
阅读全文
摘要:1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Data; 6 using System.Security.Cryptograph
阅读全文
摘要:ctr+k+f 自动对齐操作ctr+z 撤销,ctr+y反撤销ctr+j 智能提示ctr+m+m 快速隐藏或显示当前代码段ctr+m,o 全部折叠显示ctr+_ 回到上一个光标位置ctr+k+c 注释 ctr+k+u 取消注释 Ctrl+K,Ctrl+D格式化代码
阅读全文
摘要:1、封装独立方法 // 执行DataTable中的查询返回新的DataTable /// </summary> /// <param name="dt">源数据DataTable</param> /// <param name="condition">查询条件</param> /// <return
阅读全文
摘要:问题:Response.redirect 用法asp 中 用response.redirect () 跳转到不同的页面是怎么写的,比如从index.asp跳到admin目录下的a.asp 还有从a跳回 index.asp怎么写的?解答:~/表示从根目录开始,./表示从当前目录开始.../表示当前目录...
阅读全文
摘要:1、绑定Repeater 基础用法 2、简单判断用法 " + superman + "" : no%> 3、较复杂用法 &t=' + new Date().getTime...
阅读全文
摘要:2015-08-10止总结的常用方法类using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Data;using System.Security.Cryptogra...
阅读全文
摘要:转载至http://my.oschina.net/u/660932/blog/117929一、@echo offSetlocal enabledelayedexpansion::CODER BY Mark_Li POWERD BY iBAT 1.6cd "C:\Program Files\MySQL...
阅读全文
摘要:注明:转载在.net平台下,有大量的技术让你创建一个HTTP服务,像Web Service,WCF,现在又出了Web API。在.net平台下,你有很多的选择来构建一个HTTP Services。我分享一下我对Web Service、WCF以及Web API的看法。 Web Service 1、...
阅读全文
摘要:http://www.csdn.net/article/2014-12-19/2823223/1
阅读全文