摘要:
PetShop 4.0 中Web.config文件中的连接字符串是加密的,需要进行解密才能看到。这个问题PetShop 4.0的ReadMe文件中有说明:Encrypting and Decrypting the Connection StringsRun \EncryptWebConfig.bat orDecryptWebConfig.bat to encrypt or decrypt connection strings inWeb.config.Note: If you select the “Full Install” option during setup,Web.config is 阅读全文
摘要:
//base 关键字用于从派生类中访问基类的成员://调用基类上已被其他方法重写的方法。//指定创建派生类实例时应调用的基类构造函数。//基类访问只能在构造函数、实例方法或实例属性访问器中进行。using System;using System.Collections.Generic;using System.Text;namespace keywords_base{ class Program { static void Main(string[] args) { DerivedClass md = new DerivedClass(); DerivedClass md1 = new Der 阅读全文