Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6057483
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T08:29:37+00:00 2026-05-23T08:29:37+00:00

What is the best place (which folder, etc) to put view-specific javascript files in

  • 0

What is the best place (which folder, etc) to put view-specific javascript files in an ASP.NET MVC application?

To keep my project organized, I’d really love to be able to put them side-by-side with the view’s .aspx files, but I haven’t found a good way to reference them when doing that without exposing the ~/Views/Action/ folder structure. Is it really a bad thing to let details of that folder structure leak?

The alternative is to put them in the ~/Scripts or ~/Content folders, but is a minor irritation because now I have to worry about filename clashes. It’s an irritation I can get over, though, if it is “the right thing.”

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T08:29:37+00:00Added an answer on May 23, 2026 at 8:29 am

    Old question, but I wanted to put my answer incase anyone else comes looking for it.

    I too wanted my view specific js/css files under the views folder, and here’s how I did it:

    In the web.config folder in the root of /Views you need to modify two sections to enable the webserver to serve the files:

        <system.web>
            <httpHandlers>
                <add path="*.js" verb="GET,HEAD" type="System.Web.StaticFileHandler" />
                <add path="*.css" verb="GET,HEAD" type="System.Web.StaticFileHandler" />
                <add path="*" verb="*" type="System.Web.HttpNotFoundHandler"/>
            </httpHandlers>
            <!-- other content here -->
        </system.web>
    
        <system.webServer>
            <handlers>
                <remove name="BlockViewHandler"/>
                <add name="JavaScript" path="*.js" verb="GET,HEAD" type="System.Web.StaticFileHandler" />
                <add name="CSS" path="*.css" verb="GET,HEAD" type="System.Web.StaticFileHandler" />
                <add name="BlockViewHandler" path="*" verb="*" preCondition="integratedMode" type="System.Web.HttpNotFoundHandler" />
            </handlers>
            <!-- other content here -->
        </system.webServer>
    

    Then from your view file you can reference the urls like you expect:

    @Url.Content("~/Views/<ControllerName>/somefile.css")
    

    This will allow serving of .js and .css files, and will forbid serving of anything else.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a .NET 2.0 Windows Forms application. Where is the best place the
Where is the best place to put the constant in a condition? Left side
I am not sure where the best place to put validation (using the Enterprise
I am creating a ASP.NET application that is pretty much self contained, it will
Where is the best place to find information on binding redirects? or maybe just
Where is the best place to find custom compnonents? Ideally a repository, as opposed
When using a Silverlight-enabled WCF service, where is the best place to instantiate the
Best recommendations for accessing and manipulation of sqlite databases from JavaScript.
In your experience, where is the best place to place scripts that run data
I'm working on a project which stores single images and text files in one

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.