因为MembershipProvider基类是在命名空间System.Web.Security下,所以必须要创建file--amp;amp;gt;New--amp;amp;gt;ASP.Net Web Application--amp;amp;gt;Empty新项目,才能在代码中使用MembershipProvider基类。
...……
1. Windows Forms中禁用窗体的关闭按钮
添加必要的命名空间及常数和API函数的引用
using System.Runtime.InteropServices;private const int SC_CLOSE = 0xF060;private const int MF_ENABLED = 0x00000000;pri ...……