English 中文(简体)
• 如何在网上发挥作用。 利用我的问询收集文件吗?
原标题:How to create a role in asp.net web.config file using my query ?

政 府 各位都问如何书写网络。 履行我以下所述行动的任务:

i) 在我的印本网网站上有名录,即BOSS名录内的BOSS,即有IMAGE目录。

i) 只允许行政管理部门直接使用最低业务安全标准,但我希望包括匿名用户在内的网站所有用户都能够使用最低业务安全标准的目录。

Howto do that ...i have created a admin role for BOSS directory as :

<location path="boss">
    <system.web>
      <authorization>
        <allow roles="admin"/>
        <deny users="*"/>
      </authorization>
    </system.web>
  </location>
最佳回答

Aside from this sounding as a bit strange setup, since you re trying to have files in a folder have less restrictive access rights than your folders parent folder, I m pretty sure this is not possible.

我试图改变网站的编目,以便你不需要提供这一设置。

问题回答

暂无回答




相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Transaction handling with TransactionScope

I am implementing Transaction using TransactionScope with the help this MSDN article http://msdn.microsoft.com/en-us/library/system.transactions.transactionscope.aspx I just want to confirm that is ...

System.Web.Mvc.Controller Initialize

i have the following base controller... public class BaseController : Controller { protected override void Initialize(System.Web.Routing.RequestContext requestContext) { if (...

Microsoft.Contracts namespace

For what it is necessary Microsoft.Contracts namespace in asp.net? I mean, in what cases I could write using Microsoft.Contracts;?

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签