Welcome to MobyThreads.com!
FAQFAQ      ProfileProfile    Private MessagesPrivate Messages   Log inLog in
All support for the MobyThreads Threaded phpBB MOD can now be found on welsolutions at this forum

\aspnet_client\ folder

 
   Web Hosting and Web Master Forums (Home) -> IIS RSS
Next:  can we upgrade IIS 5.x to IIS 6.0 in Windows 2000..  
Author Message
John Grandy

External


Since: Apr 07, 2005
Posts: 7



(Msg. 1) Posted: Tue Jun 28, 2005 7:11 pm
Post subject: \aspnet_client\ folder
Archived from groups: microsoft>public>inetserver>iis (more info?)

If VS (devenv.exe) is used to create a new web app, the virtual dir will
point to a physical dir that is a sub-dir of c:\inetpub\wwwroot\ , and the
\aspnet_client\ folder will be located at c:\inetpub\wwwroot\aspnet_client\

However, if this default location for the physical dir is not desired, IIS
may be used to create a new virtual dir that points to a physical dir that
is not a sub-dir of c:\inetpub\wwwroot\ ( for example, c:\myapp\ ) ....

But how is the \aspnet_client\ folder supposed to be created for this web
app ? VS will not create it (if you create a new web-app project in VS and
point it to the virtual dir for c:\myapp\).

Do you just physically copy c:\inetpub\wwwroot\aspnet_client\ to c:\myapp\
?

What configuration settings control where a web-app looks for its
\aspnet_client\ folder ?

 >> Stay informed about: aspnet_client folder 
Back to top
Login to vote
kenremove

External


Since: Aug 23, 2003
Posts: 2901



(Msg. 2) Posted: Tue Jun 28, 2005 11:55 pm
Post subject: Re: \aspnet_client\ folder [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

If this alternate physical directory (e.g. c:\myapp) is a virtual directory
underneath your existing website, then your existing aspnet_client folder
will work fine.

This is because a browser retrieves the javascript files located inside that
folder using HTTP, and IIS does the necessary translation of virtual URLs
into physical directories.

Your app will be located at http://yourservername/yourApp regardless of
whether the actual physical folder for your application is
c:\inetpub\wwwroot\yourApp or c:\yourApp.

Likewise, the aspnet_client contents are retrieved via
http://yourservername/aspnet_client

HTH

Cheers
Ken

--
IIS Blog: www.adopenstatic.com/cs/blogs/ken/
Web: www.adopenstatic.com


"John Grandy" <johnagrandy-at-yahoo-dot-com> wrote in message
news:uMLVq$EfFHA.1044@tk2msftngp13.phx.gbl...
: If VS (devenv.exe) is used to create a new web app, the virtual dir will
: point to a physical dir that is a sub-dir of c:\inetpub\wwwroot\ , and the
: \aspnet_client\ folder will be located at
c:\inetpub\wwwroot\aspnet_client\
:
: However, if this default location for the physical dir is not desired, IIS
: may be used to create a new virtual dir that points to a physical dir that
: is not a sub-dir of c:\inetpub\wwwroot\ ( for example, c:\myapp\ ) ....
:
: But how is the \aspnet_client\ folder supposed to be created for this web
: app ? VS will not create it (if you create a new web-app project in VS
and
: point it to the virtual dir for c:\myapp\).
:
: Do you just physically copy c:\inetpub\wwwroot\aspnet_client\ to
c:\myapp\
: ?
:
: What configuration settings control where a web-app looks for its
: \aspnet_client\ folder ?
:
:

 >> Stay informed about: aspnet_client folder 
Back to top
Login to vote
John Grandy

External


Since: Apr 07, 2005
Posts: 7



(Msg. 3) Posted: Tue Jun 28, 2005 11:55 pm
Post subject: Re: \aspnet_client\ folder [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Hi Ken, and thanks for the response.

I am looking at a web server with a very high quality commercial application
that is not configured in the manner you describe.

In IIS , the default web site does not map to "c:\inetput\wwwroot", rather
it maps to "c:\webapps\webapp1"

There is an \aspnet_client\ folder in two places:

"c:\inetpub\wwwroot\aspnet_client\"
"c:\webapps\webapp1\aspnet_client\"

I assume that the app is using the \aspnet_client\ folder in the latter
location. But I can not figure out how it was configured .... or why.

"Ken Schaefer" <kenREMOVE.TakeThisOut@THISadOpenStatic.com> wrote in message
news:OuHYTXFfFHA.2320@TK2MSFTNGP10.phx.gbl...
> If this alternate physical directory (e.g. c:\myapp) is a virtual
> directory
> underneath your existing website, then your existing aspnet_client folder
> will work fine.
>
> This is because a browser retrieves the javascript files located inside
> that
> folder using HTTP, and IIS does the necessary translation of virtual URLs
> into physical directories.
>
> Your app will be located at http://yourservername/yourApp regardless of
> whether the actual physical folder for your application is
> c:\inetpub\wwwroot\yourApp or c:\yourApp.
>
> Likewise, the aspnet_client contents are retrieved via
> http://yourservername/aspnet_client
>
> HTH
>
> Cheers
> Ken
>
> --
> IIS Blog: www.adopenstatic.com/cs/blogs/ken/
> Web: www.adopenstatic.com
>
>
> "John Grandy" <johnagrandy-at-yahoo-dot-com> wrote in message
> news:uMLVq$EfFHA.1044@tk2msftngp13.phx.gbl...
> : If VS (devenv.exe) is used to create a new web app, the virtual dir will
> : point to a physical dir that is a sub-dir of c:\inetpub\wwwroot\ , and
> the
> : \aspnet_client\ folder will be located at
> c:\inetpub\wwwroot\aspnet_client\
> :
> : However, if this default location for the physical dir is not desired,
> IIS
> : may be used to create a new virtual dir that points to a physical dir
> that
> : is not a sub-dir of c:\inetpub\wwwroot\ ( for example, c:\myapp\ )
> ....
> :
> : But how is the \aspnet_client\ folder supposed to be created for this
> web
> : app ? VS will not create it (if you create a new web-app project in VS
> and
> : point it to the virtual dir for c:\myapp\).
> :
> : Do you just physically copy c:\inetpub\wwwroot\aspnet_client\ to
> c:\myapp\
> : ?
> :
> : What configuration settings control where a web-app looks for its
> : \aspnet_client\ folder ?
> :
> :
>
>
 >> Stay informed about: aspnet_client folder 
Back to top
Login to vote
kenremove

External


Since: Aug 23, 2003
Posts: 2901



(Msg. 4) Posted: Wed Jun 29, 2005 12:55 am
Post subject: Re: \aspnet_client\ folder [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Hi,

Running aspnet_regiis.exe will place the correct aspnet_client folder under
each website currently configured on the server. So, at one time, there may
have been a website run from c:\inetpub\wwwroot (since that's the default).
Perhaps latter on a second website was added (or the default one changed),
and aspnet_regiis was run again to add the aspnet_client folder underneath
this new site.

Cheers
Ken

--
IIS Blog: www.adopenstatic.com/cs/blogs/ken/
Web: www.adopenstatic.com


"John Grandy" <johnagrandy-at-yahoo-dot-com> wrote in message
news:%23m3LVbFfFHA.748@tk2msftngp13.phx.gbl...
: Hi Ken, and thanks for the response.
:
: I am looking at a web server with a very high quality commercial
application
: that is not configured in the manner you describe.
:
: In IIS , the default web site does not map to "c:\inetput\wwwroot", rather
: it maps to "c:\webapps\webapp1"
:
: There is an \aspnet_client\ folder in two places:
:
: "c:\inetpub\wwwroot\aspnet_client\"
: "c:\webapps\webapp1\aspnet_client\"
:
: I assume that the app is using the \aspnet_client\ folder in the latter
: location. But I can not figure out how it was configured .... or why.
:
: "Ken Schaefer" <kenREMOVE.TakeThisOut@THISadOpenStatic.com> wrote in message
: news:OuHYTXFfFHA.2320@TK2MSFTNGP10.phx.gbl...
: > If this alternate physical directory (e.g. c:\myapp) is a virtual
: > directory
: > underneath your existing website, then your existing aspnet_client
folder
: > will work fine.
: >
: > This is because a browser retrieves the javascript files located inside
: > that
: > folder using HTTP, and IIS does the necessary translation of virtual
URLs
: > into physical directories.
: >
: > Your app will be located at http://yourservername/yourApp regardless of
: > whether the actual physical folder for your application is
: > c:\inetpub\wwwroot\yourApp or c:\yourApp.
: >
: > Likewise, the aspnet_client contents are retrieved via
: > http://yourservername/aspnet_client
: >
: > HTH
: >
: > Cheers
: > Ken
: >
: > --
: > IIS Blog: www.adopenstatic.com/cs/blogs/ken/
: > Web: www.adopenstatic.com
: >
: >
: > "John Grandy" <johnagrandy-at-yahoo-dot-com> wrote in message
: > news:uMLVq$EfFHA.1044@tk2msftngp13.phx.gbl...
: > : If VS (devenv.exe) is used to create a new web app, the virtual dir
will
: > : point to a physical dir that is a sub-dir of c:\inetpub\wwwroot\ , and
: > the
: > : \aspnet_client\ folder will be located at
: > c:\inetpub\wwwroot\aspnet_client\
: > :
: > : However, if this default location for the physical dir is not desired,
: > IIS
: > : may be used to create a new virtual dir that points to a physical dir
: > that
: > : is not a sub-dir of c:\inetpub\wwwroot\ ( for example, c:\myapp\ )
: > ....
: > :
: > : But how is the \aspnet_client\ folder supposed to be created for this
: > web
: > : app ? VS will not create it (if you create a new web-app project in
VS
: > and
: > : point it to the virtual dir for c:\myapp\).
: > :
: > : Do you just physically copy c:\inetpub\wwwroot\aspnet_client\ to
: > c:\myapp\
: > : ?
: > :
: > : What configuration settings control where a web-app looks for its
: > : \aspnet_client\ folder ?
: > :
: > :
: >
: >
:
:
 >> Stay informed about: aspnet_client folder 
Back to top
Login to vote
Display posts from previous:   
Related Topics:
iis web folder - win2k adv server, iis5.0, access2000 trying to create a 'web' folder where i can put a mdb that i can get to with an odbc connection what i have tried 1.create a virtual website=web1 (i have web pages here that i can access)(mydomain.com/web1/web.htm) 2,...

WebDAV Web Folder - Hi, I set up WebDAV directory on Server 2003 without any problems using Basic Authentication http://voronov.co.uk/WebDAV User Name: TEST Password: 123456 When I type http://voronov.co.uk/WebDAV in Internet Explorer address bar I prompted for password...

Set security for web folder? - I can't seem to set up the following permissions for a folder on my website: I need to set up write permissions only for users logging into the customer side of the site, no permissions for anonymous users (those not logged in) and full permissions for....

authentication to web folder - Running Windows 2000 Server latest service pack. I am trying to set up a particular folder in my web directory to need authentication. I'm sure I've done this a million times before and I can't find where the problem is. Folder A is in my webroot..

Different looking folder icons - Why do I have some websites under wwwroot with a yellow folder with a global in it and others are just yellow folders without the global?
   Web Hosting and Web Master Forums (Home) -> IIS All times are: Pacific Time (US & Canada) (change)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum



[ Contact us | Terms of Service/Privacy Policy ]