ame 相关的软件列表

asp.net一些很酷很实用的.Net技巧
Asp.net

asp.net一些很酷很实用的.Net技巧

2020-04-08 标签:asp,n,et,很酷,实用,net,技巧,framework,如何,获得,系统,文件夹,使用,system,envioment,方法,例如

一..Net Framework 1.如何获得系统文件夹 使用System.Envioment类的GetFolderPath方法;例如: Environment.GetFolderPath( Environment.SpecialFolder.Personal ) 2.如何获得正在执行的exe文件的

asp.net DataGridView导出到Excel的三个方法[亲测]
Asp.net

asp.net DataGridView导出到Excel的三个方法[亲测]

2020-04-08 标签:asp,n,et,导出,excel,三个,方法,region,数据,显示,summary,打开,并将,控件,param,ame,dgv

#region DataGridView数据显示到Excel/// /// 打开Excel并将DataGridView控件中数据导出到Excel/// /// DataGridView对象 /// 是否显示Excel界面 /// /// add com "Microsoft Excel 11.0 O

asp.net学习中发现的比较完整的流程
Asp.net

asp.net学习中发现的比较完整的流程

2020-04-08 标签:asp,n,et,学习,发现,比较,完整,流程,你已经,较多,面向,对象,开发,经验,跳过,以下,两步,第一步,掌握,一门

如果你已经有较多的面向对象开发经验,跳过以下这两步:  第一步 掌握一门.NET面向对象语言,C#或VB.NET 我强烈反对在没系统学过一门面向对象(OO)语言的前提下去学ASP.NET。 ASP.NET是一个全面向对象的技术,不懂OO,那绝对学不下去!  第二步 对.NET Framework类库

asp.net 多字段模糊查询代码
Asp.net

asp.net 多字段模糊查询代码

2020-04-08 标签:asp,n,et,多字,模糊,查询,代码,string,strfield,id,classname,classadd,strkeywords,tbxkeywords,text,trim,strsql,dbexe,searchtext

string strField = "id|className|classAdd"; string strKeyWords = this.tbxKeyWords.Text.Trim(); string strSql = dbexe.searchText("select * from class",

asp.net清空Cookie的两种方法
Asp.net

asp.net清空Cookie的两种方法

2020-04-08 标签:asp,n,et,清空,cookie,两种,方法,expires,datetime,response,cookies,username,第二,admin,adddays

asp.net清空Cookie的两种方法 第一种 Cookie.Expires=[DateTime]; Response.Cookies("UserName").Expires = 0; 第二种 Response.Cookies["admin"].Expires = DateTime.Now.Add

asp.net Repeater取得CheckBox选中的某行某个值
Asp.net

asp.net Repeater取得CheckBox选中的某行某个值

2020-04-08 标签:asp,n,et,repeater,取得,checkbox,选中,某行,某个,foreach,control,c,rpttables,controls,cbx,findcontrol,cbxid,textbox

1、 foreach (Control c in this.rptTables.Controls) {CheckBox cbx = (CheckBox)c.FindControl("cbxId");TextBox tbx = (TextBox)c.FindControl("tbxTableName"

asp.net TripleDES加密、解密算法
Asp.net

asp.net TripleDES加密、解密算法

2020-04-08 标签:asp,n,et,tripledes,加密,解密,算法,using,system,collections,generic,linq,text,security,io,amespace,region

using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Security.Cryptography;using System.IO;namespace Windows

asp.net Repeater取得CheckBox选中的某行某个值的c#写法
Asp.net

asp.net Repeater取得CheckBox选中的某行某个值的c#写法

2020-04-08 标签:asp,n,et,repeater,取得,checkbox,选中,某行,某个,值的,c,写法,foreach,control,rpttables,controls,cbx,findcontrol,cbxid

1、 foreach (Control c in this.rptTables.Controls) {CheckBox cbx = (CheckBox)c.FindControl("cbxId");TextBox tbx = (TextBox)c.FindControl("tbxTableName"

asp.net遍历目录文件夹和子目录所有文件
Asp.net

asp.net遍历目录文件夹和子目录所有文件

2020-04-04 标签:asp,n,et,遍历,目录,文件夹,子目录,文件,实现,代码,如下,using,system,collections,generic,text,io,threading,amespace,copefile

实现代码如下:using System; using System.Collections.Generic; using System.Text; using System.IO; using System.Threading; namespace copefile {class Program{s

asp.net和asp下ACCESS的参数化查询
Asp.net

asp.net和asp下ACCESS的参数化查询

2020-04-04 标签:asp,n,et,access,参数,查询,今天,我就,把我,方法,经验,大家,分享,希望,有所,启发,写的,不对,高手

今天我就把我用ACCESS参数化查询的一些方法和经验和大家分享 希望对大家有所启发,有写的不对的地方希望高手们多多指教 ASP.NET 用OleDbCommand的new OleDbParameter创建参数货查询 ASP用Command的CreateParameter 方法创建参数化查询 (SQL