ASP.NET 2.0 won't let me put my user controls in the same directory as Web.config

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

  1. #1

    Default ASP.NET 2.0 won't let me put my user controls in the same directory as Web.config

    When I put my *.ascx files in the same directory as Web.config and my user
    controls are registered in Web.config it gives me an error. Putting my
    *.ascx files in another directory is not hard, but it can cause another
    annoyance: relative directories. For example, that means that I need to
    write code to add a ../ to the beginning of all relative directories used in
    the user controls, which can be a real pain, especially if the directory is
    being passed as a parameter and you do not know beforehand whether it is a
    relative directory. Is there any way to allow me to put my *.ascx files in
    the same directory as Web.config? Thanks.
    --
    Nathan Sokalski
    [email]njsokalski@hotmail.com[/email]
    [url]http://www.nathansokalski.com/[/url]


    Nathan Sokalski Guest

  2. Similar Questions and Discussions

    1. communication between an application, custom controls, and user controls
      Hi, and many thanks in advance... I'm a little lost about how to proceed with communication between an application, custom controls, and user...
    2. Why the properties of web user controls which inherted from my custom base UI controls MISSED?
      Why the properties of web user controls which inherted from my custom base UI controls MISSED? How should I to set enable?
    3. using javascript in User controls to access server controls of the user control
      Hello all, I have an asp.net textbox (named txtHidden) and an HtmlButton(named btnAction). I wanted to write a javascript function which will get...
    4. Web.Config and Virtual Directory
      We have a intranet site that allows one of our departments to search a set of pdfs and then look at them. Only problem is that only they and us...
    5. user controls: dynamiclly added child controls dont survive post back ?
      hi, i have some strange behaviour: i've created a web user control that add's some child controls (e.g: textbox, image buttons) to its control...
  3. #2

    Default Re: ASP.NET 2.0 won't let me put my user controls in the same directory as Web.config

    How you are planning to use your user control ?. If you programatically
    going to use all your user control all you have to do is create seprate
    folder for all user control in your project root directory and use ../<your
    control directory>/controlname.ascx. If you are going to use the control in
    designer , let the VS.net do all the nessary work for you. Just drag and
    drop your user control to the page where ever you want to use.


    "Nathan Sokalski" <njsokalski@hotmail.com> wrote in message
    news:eXMEDBm3GHA.4024@TK2MSFTNGP03.phx.gbl...
    > When I put my *.ascx files in the same directory as Web.config and my user
    > controls are registered in Web.config it gives me an error. Putting my
    > *.ascx files in another directory is not hard, but it can cause another
    > annoyance: relative directories. For example, that means that I need to
    > write code to add a ../ to the beginning of all relative directories used
    > in the user controls, which can be a real pain, especially if the
    > directory is being passed as a parameter and you do not know beforehand
    > whether it is a relative directory. Is there any way to allow me to put my
    > *.ascx files in the same directory as Web.config? Thanks.
    > --
    > Nathan Sokalski
    > [email]njsokalski@hotmail.com[/email]
    > [url]http://www.nathansokalski.com/[/url]
    >

    Baski Guest

  4. #3

    Default Re: ASP.NET 2.0 won't let me put my user controls in the same directory as Web.config

    Several problems with that occur when a directory is entered as a user
    control property. I want a way to programmatically access the directory of
    the page that is using the user control. One of my goals is to use
    MakeRelativeUri in my user controls, but I keep ending up with the control
    directory before what would be the correct output. Any ideas? Thanks.
    --
    Nathan Sokalski
    [email]njsokalski@hotmail.com[/email]
    [url]http://www.nathansokalski.com/[/url]

    "Baski" <baski@aldensys.com> wrote in message
    news:eTzzeAn3GHA.2228@TK2MSFTNGP03.phx.gbl...
    > How you are planning to use your user control ?. If you programatically
    > going to use all your user control all you have to do is create seprate
    > folder for all user control in your project root directory and use
    > ../<your control directory>/controlname.ascx. If you are going to use the
    > control in designer , let the VS.net do all the nessary work for you. Just
    > drag and drop your user control to the page where ever you want to use.
    >
    >
    > "Nathan Sokalski" <njsokalski@hotmail.com> wrote in message
    > news:eXMEDBm3GHA.4024@TK2MSFTNGP03.phx.gbl...
    >> When I put my *.ascx files in the same directory as Web.config and my
    >> user controls are registered in Web.config it gives me an error. Putting
    >> my *.ascx files in another directory is not hard, but it can cause
    >> another annoyance: relative directories. For example, that means that I
    >> need to write code to add a ../ to the beginning of all relative
    >> directories used in the user controls, which can be a real pain,
    >> especially if the directory is being passed as a parameter and you do not
    >> know beforehand whether it is a relative directory. Is there any way to
    >> allow me to put my *.ascx files in the same directory as Web.config?
    >> Thanks.
    >> --
    >> Nathan Sokalski
    >> [email]njsokalski@hotmail.com[/email]
    >> [url]http://www.nathansokalski.com/[/url]
    >>
    >
    >

    Nathan Sokalski 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