ASP.NET Authorization What is * and? I mean?

In ASP.NET, I often see (and copied the following), but never understood the difference between * and? characters.

eg

<system.web>
  <authorization>
    <deny users="*" />
    <deny users="?" />
  </authorization>
</system.web>

Just wondering, can someone tell me the difference?

Greetings.

+3
source share
2 answers

? means anonymous users.

* means all users.

+5
source

* is a wildcard meaning "everyone" ,? means anonymous users.

+1
source

Source: https://habr.com/ru/post/1714160/


All Articles