Tuesday, August 13, 2019

How to set authorization to particular web page using forms based authentication in asp.net

Add the below code into web.config file

<location path="webpage1.aspx">
    <system.web>
      <authorization>
        <allow users="*"/>
      </authorization>
    </system.web>
  </location>

Featured Post

What is JavaScript? What is the role of JavaScript engine?

  The JavaScript is a Programming language that is used for converting static web pages to interactive and dynamic web pages. A JavaScript e...