码迷,mamicode.com
首页 >  
搜索关键字:configurationmanager    ( 293个结果
WCF 删除队列
Configuration config = ConfigurationManager.OpenExeConfiguration (ConfigurationUserLevel.None); ServiceModelSectionGroup group=ServiceModelSectionGrou...
分类:其他好文   时间:2014-10-29 12:51:08    阅读次数:105
扩展方法检测客户端队列是否存在
public static class QeuedServiceHelper { public static void VerifyQeues() { Configuration config = ConfigurationManager.OpenExeConfiguration (Configu....
分类:其他好文   时间:2014-10-29 12:29:21    阅读次数:112
Silverlight中使用配置文件的方法
Silverlight作为一个精简版的.NET framework,没有为配置文件提供相应的支持。我们无法像在winForm中那样使用System.Configuration.ConfigurationManager来访问app.config中的配置信息。所以比较好的一个方式就是自己写一个配置文件管...
分类:Web程序   时间:2014-10-29 10:25:36    阅读次数:176
Asp.Net中的获取Web.config中设置的参数!(前后台的代码示例)
一、Web.config中设置代码 二、在App_Code中建立sys.cs// 注意:需要添加相应的引用命名空间usingpublic class sys{ public static int deleted = int.Parse(ConfigurationManager.App...
分类:Web程序   时间:2014-10-16 16:53:42    阅读次数:139
C# 配置文件读取与修改
配置文件在很多情况下都使用到, 配置文件分为两种 一种是应用程序的配置文件, 一种是web的配置文件.两种配置文件最大的区别是web的配置文件更新之后会实时更新, 应用程序的配置文件不会实时更新.更新应用程序的配置文件之后需刷新ConfigurationManager.RefreshSection(...
分类:Windows程序   时间:2014-10-14 19:12:49    阅读次数:188
命名空间System.Configuration中不存在类型或命名空间名称ConfigurationManager
命名空间System.Configuration中不存在类型或命名空间名称ConfigurationManager...
分类:其他好文   时间:2014-10-09 16:00:50    阅读次数:130
C#中往数据库插入空值报错解决方法
C#中的NUll于SQL中的null是不一样的, SQL中的null用C#表示出来就是DBNull.Valueclass SqlHerper { private static readonly string connStr = ConfigurationManager.ConnectionStrin...
分类:数据库   时间:2014-10-04 02:44:35    阅读次数:304
Ftp文件操作
public class FtpTools { static readonly string ftpServerIP = ConfigurationManager.AppSettings["FtpAddress"]; static readonly string f...
分类:其他好文   时间:2014-09-30 10:58:22    阅读次数:240
登录次数验证,可能还是有些不足的,希望大家指正
protected void BtnLogin_Click(object sender, EventArgs e) { string ConStr = ConfigurationManager.ConnectionStrings["ConStr"].ToStri...
分类:其他好文   时间:2014-09-29 14:11:21    阅读次数:172
批量处理数据 SqlBulkCopy
string connectionString = new PublicDBHelper().GetCon(System.Configuration.ConfigurationManager.AppSettings["constring"].ToString());using (SqlConnec....
分类:数据库   时间:2014-09-27 12:37:49    阅读次数:192
293条   上一页 1 ... 22 23 24 25 26 ... 30 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!