摘要:
appSettings的两大限制:1.不能很好的存储结构化的数据2.处理不同类型的数据灵活性较差比如你要在配置文件中存储如下信息是不行的:<orderService available="true" pollTimeout="00:01:00" location="tcp://OrderComputer:8010/OrderService"/> 为了突破这些限制,你可以这样扩展配置文件... 阅读全文
摘要:
public static string CreateMachineKey(int length){ // Create a byte array. byte[] random = new byte[length/2]; // Create a cryptographically strong random number generator. RNGCryptoServiceProvider rn... 阅读全文
摘要:
protected void Page_Load(object sender, System.EventArgs e){ // Perform the initialization only the first time the page is requested. // After that, this information is tracked in view state. if (!Pa... 阅读全文