LiPe 0 Denunciar post Postado Dezembro 19, 2013 Olá Estou retomando com .NET e estou fazendo um sistema que utiliza login e senha. Estou utilizando o controle pelo webconfig <authentication>, porém eu gostaria de deixar algumas paginas com permissão de acesso mesmo sem o usuário estiver logado. Obrigado Compartilhar este post Link para o post Compartilhar em outros sites
Rafael Mitsunaka 11 Denunciar post Postado Dezembro 19, 2013 Dentro do webconfig. <configuration> <location path="diretorio"> <system.web> <authorization> <allow users="*"></allow> </authorization> </system.web> </location> <location path="pagina.aspx"> <system.web> <authorization> <allow users="*"></allow> </authorization> </system.web> </location> Compartilhar este post Link para o post Compartilhar em outros sites