Ask a Question related to ASP.NET Building Controls, Design and Development.
-
Nathan Sokalski #1
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
-
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... -
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? -
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... -
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... -
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... -
Baski #2
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
-
Nathan Sokalski #3
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



Reply With Quote

