is there an authorizeattribute equivalent to just standard web forms (not MVC) for .net

You can set this up in web.config with the authorization element. <configuration> <system.web> <authorization> <allow roles=”domainname\Managers” /> <deny users=”*” /> </authorization> </system.web> </configuration> Basically domain groups are translated into roles when using <authentication mode=”Windows” />. You can read more about it on MSDN

SQL Network Interfaces, error: 26 – Error Locating Server/Instance Specified [closed]

If you are connecting from Windows machine A to Windows machine B (server with SQL Server installed), and are getting this error, you need to do the following: On machine B: 1.) turn on the Windows service called “SQL Server Browser” and start the service 2.) in the Windows firewall, enable incoming port UDP 1434 … Read more