标签:
asp.net登录时验证本地ini文件是否正确,主要步骤。
1、导入myini.DLL文件。
2、添加引用 using myini;
3、已经有一份本地的ini格式的文件,文件内容如下:
[section1]
keyword1=value1
keyword2=value2
keyword3=value3
[section2]
keyword1=value1
keyword2=value2
4、读取时引用
INIFile ab = new INIFile();
string path1 = @"f:\test.ini";
this.TextBox1.Text = ab.Read("section1", "keyword1", path1);
5、读出后进行验证,验证失败禁止登录。
标签:
原文地址:http://www.cnblogs.com/jeib/p/4246846.html