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 9117087
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T04:49:31+00:00 2026-06-17T04:49:31+00:00

I want to include a javascript reference like: <script src=@Url.Content(~/Scripts/jqueryFoo.js) type=text/javascript></script> If I have

  • 0

I want to include a javascript reference like:

<script src="@Url.Content("~/Scripts/jqueryFoo.js")" type="text/javascript"></script>

If I have a Razor View, what is the proper way to include this without having to add it to the Layout (I only need it in a single specific View, not all of them)

In aspx, we could use content place holders.. I found older examples using aspx in mvc but not Razor view..

  • 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-06-17T04:49:33+00:00Added an answer on June 17, 2026 at 4:49 am

    Depending how you want to implement it (if there was a specific location you wanted the scripts) you could implement a @section within your _Layout which would enable you to add additional scripts from the view itself, while still retaining structure. e.g.

    _Layout

    <!DOCTYPE html>
    <html>
      <head>
        <title>...</title>
        <script src="@Url.Content("~/Scripts/jquery.min.js")"></script>
        @RenderSection("Scripts",false/*required*/)
      </head>
      <body>
        @RenderBody()
      </body>
    </html>
    

    View

    @model MyNamespace.ViewModels.WhateverViewModel
    @section Scripts
    {
      <script src="@Url.Content("~/Scripts/jqueryFoo.js")"></script>
    }
    

    Otherwise, what you have is fine. If you don’t mind it being “inline” with the view that was output, you can place the <script> declaration within the view.

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

Sidebar

Related Questions

I want to insert the following include tag into my webpage using JavaScript. <!--#include
I want include the Type name of each object in my collection from my
I want to include the chosen library like my other js libraries in my
I am adding the following ScriptBundle in BundleConfig: bundles.Add(new ScriptBundle(~/bundles/javascript).Include( ~/Scripts/jquery-1.*, ~/Scripts/load-image.min.js, ~/Scripts/bootstrap.*, ~/Scripts/bootstrap-image-gallery.*,
I'm developing a spring-mvc application and i want to include javascript in one jsp.
I have some external Javascript files in my GWT app that I only want
I want to include some Javascript functionality in a Haml view, but I don't
How would I achieve the pseudo-code below in JavaScript? I want to include the
So I only want this JavaScript to be included in the response to the
I want to include an admob banner in my application and I got this

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.