Security content in Virtual Directory

Ask a Question related to ASP.NET Security, Design and Development.

  1. #1

    Default Security content in Virtual Directory

    I have a .NET web application that uses forms
    authentication. There are CBTs in a virtual directory on
    the IIS server. I do not want users logging into to the
    website to be able to navigate to the virtual folder and
    start any of the CBTs. The CBTs should only be able to be
    accessed throught a redirection from an .aspx page in my
    application. Is there any way to do this

    Beryl Small Guest

  2. Similar Questions and Discussions

    1. virtual directory
      Our corporate website uses coldfusion. We have developed a web time entry system that also uses coldfusion. I am trying to setup the new timentry...
    2. Server cannot access application directory ... The directory does not exist or is not accessible because of security settings
      If you are using Windows XP in a Workgroup, rather than a Domain, then by default "Simple Filesharing" is turned on, and you won't see a security...
    3. Server cannot access application directory... The directory does not exist or is not accessible because of security settings.
      Hi, I have this issue with the error below. Let me explain my goal and my server environement: Goal: To have 3 separate web servers reading...
    4. Have to Be A Virtual Directory?
      I have a project named NET. It has .aspx and one .asmx files. This NET is a virtual directory and application in IIS: - All .aspx and one .asmx and...
    5. How to create a new Virtual Directory?
      I have bought an asp.net host,but there is only one Virtual Directory. How to create a new Virtual Directory in an ASP.NET application? Thanks!
  3. #2

    Default Re: Security content in Virtual Directory

    What I would do is place the CBTs in a directory not accessable via the web,
    but that the ASPNET account had access to and stream the content to the
    user. Beware that garbage collection is not a fan of large objects, so I
    would stream (don't use the default of buffering) the content in 50kb chunks
    to avoid any memory issues.

    Let me know if you need a quick code sample.

    --
    Eric Marvets
    Principal Consultant

    the bang project

    <shameless self promotion>

    Email [email]sales@bangproject.com[/email] for Information on Our Architecture and
    Mentoring Services

    </shameless self promotion>

    "Beryl Small" <anonymous@discussions.microsoft.com> wrote in message
    news:B9040BA2-4932-420C-8C94-306A23AC2743@microsoft.com...
    > I have a .NET web application that uses forms
    > authentication. There are CBTs in a virtual directory on
    > the IIS server. I do not want users logging into to the
    > website to be able to navigate to the virtual folder and
    > start any of the CBTs. The CBTs should only be able to be
    > accessed throught a redirection from an .aspx page in my
    > application. Is there any way to do this?
    >

    Eric Marvets Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139