×
INTELLIGENT WORK FORUMS
FOR COMPUTER PROFESSIONALS

Contact US

Log In

Come Join Us!

Are you a
Computer / IT professional?
Join Tek-Tips Forums!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!

*Tek-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

Posting Guidelines

Promoting, selling, recruiting, coursework and thesis posting is forbidden.

Students Click Here

06:22:06.9093: Referenced file '~/Scripts/_references.js' not found.

06:22:06.9093: Referenced file '~/Scripts/_references.js' not found.

06:22:06.9093: Referenced file '~/Scripts/_references.js' not found.

(OP)
Hello

I am getting an odd message in Visual Studio 2013:

06:22:06.9093: Referenced file '~/Scripts/_references.js' not found.

I am, in fact, looking at that very file in Solution Explorer now.

How best to correct that message, please?

Thanks

RE: 06:22:06.9093: Referenced file '~/Scripts/_references.js' not found.

look at the code that is referencing that file
make sure you have the correct relative path, or absolute path

RE: 06:22:06.9093: Referenced file '~/Scripts/_references.js' not found.

Hello

You can use this tips on your webpage

CODE --> aspx

<script type="text/javascript" src="<%# this.Page.ResolveUrl("~/js/jquery-1.8.2_min.js") %>"></script> 

and in the behind you need to add this on the page load , to work well

CODE --> c#

protected void Page_Load(object sender, EventArgs e)
{
    this.Page.Header.DataBind(); // NOTE: this resolves any <%# ... %> tags in <head>
} 

thanks
Oliver

Red Flag This Post

Please let us know here why this post is inappropriate. Reasons such as off-topic, duplicates, flames, illegal, vulgar, or students posting their homework.

Red Flag Submitted

Thank you for helping keep Tek-Tips Forums free from inappropriate posts.
The Tek-Tips staff will check this out and take appropriate action.

Reply To This Thread

Posting in the Tek-Tips forums is a member-only feature.

Click Here to join Tek-Tips and talk with other members! Already a Member? Login

Close Box

Join Tek-Tips® Today!

Join your peers on the Internet's largest technical computer professional community.
It's easy to join and it's free.

Here's Why Members Love Tek-Tips Forums:

Register now while it's still free!

Already a member? Close this window and log in.

Join Us             Close