Click here to Skip to main content
15,910,773 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: ASP.NET MVC 5, IIS 10 express 404.17 error Pin
Member 1299209428-Mar-17 4:15
Member 1299209428-Mar-17 4:15 
GeneralRe: ASP.NET MVC 5, IIS 10 express 404.17 error Pin
John C Rayan28-Mar-17 9:27
professionalJohn C Rayan28-Mar-17 9:27 
GeneralRe: ASP.NET MVC 5, IIS 10 express 404.17 error Pin
Member 1299209428-Mar-17 10:32
Member 1299209428-Mar-17 10:32 
GeneralRe: ASP.NET MVC 5, IIS 10 express 404.17 error Pin
John C Rayan28-Mar-17 9:28
professionalJohn C Rayan28-Mar-17 9:28 
GeneralRe: ASP.NET MVC 5, IIS 10 express 404.17 error Pin
Member 1299209428-Mar-17 10:34
Member 1299209428-Mar-17 10:34 
GeneralRe: ASP.NET MVC 5, IIS 10 express 404.17 error Pin
Member 1299209428-Mar-17 10:37
Member 1299209428-Mar-17 10:37 
GeneralRe: ASP.NET MVC 5, IIS 10 express 404.17 error Pin
Member 1299209428-Mar-17 8:41
Member 1299209428-Mar-17 8:41 
GeneralRe: ASP.NET MVC 5, IIS 10 express 404.17 error Pin
Member 1299209429-Mar-17 10:15
Member 1299209429-Mar-17 10:15 
I solved it by reordering the scripts in the header of the main view
<meta name="viewport" content="width=device-width" />
   <link href="∼/Content/bootstrap.css" rel="stylesheet" />
   <link href="∼/Content/bootstrap-theme.css" rel="stylesheet" />
   <script type="text/javascript" src="~/Scripts/jquery-3.1.1.min.js"></script>
   <script src="~/Scripts/bootstrap.min.js"></script>
   <script type="text/javascript" src="~/Scripts/jquery.unobtrusive-ajax.js"></script>
:
Then I updated the script that loads the partial view:
<pre>  <script type="text/javascript">
         $(document).ready(function () {
             $('.filelist').on('click', function (e) {
                 e.preventDefault();
                 alert('Im clicked on filePath = ' + $(this).attr('value'));
                 var filePath = $(this).attr('value');    //value is attribute set in Html
                 $('#partial').load('@Url.Action("DevelopmentPartial", "Development")', { path1: filePath });
             });
         });
    </script>

GeneralRe: ASP.NET MVC 5, IIS 10 express 404.17 error Pin
John C Rayan30-Mar-17 2:23
professionalJohn C Rayan30-Mar-17 2:23 
GeneralRe: ASP.NET MVC 5, IIS 10 express 404.17 error Pin
Member 1299209430-Mar-17 3:34
Member 1299209430-Mar-17 3:34 
GeneralRe: ASP.NET MVC 5, IIS 10 express 404.17 error Pin
John C Rayan30-Mar-17 21:42
professionalJohn C Rayan30-Mar-17 21:42 
QuestionMVC Telerik control cannot upload image more than 4M Pin
Medo-I24-Mar-17 22:04
Medo-I24-Mar-17 22:04 
AnswerRe: MVC Telerik control cannot upload image more than 4M Pin
ZurdoDev27-Mar-17 1:58
professionalZurdoDev27-Mar-17 1:58 
QuestionThe imported project was not found. Confirm that the path in the <Import> declaration is correct, and that the file exists on disk Pin
indian14323-Mar-17 8:07
indian14323-Mar-17 8:07 
AnswerRe: The imported project was not found. Confirm that the path in the <Import> declaration is correct, and that the file exists on disk Pin
User 418025423-Mar-17 11:20
User 418025423-Mar-17 11:20 
GeneralRe: The imported project was not found. Confirm that the path in the <Import> declaration is correct, and that the file exists on disk Pin
indian14323-Mar-17 14:44
indian14323-Mar-17 14:44 
QuestionWEB API - POST handler hangs Pin
Member 1307682222-Mar-17 3:08
Member 1307682222-Mar-17 3:08 
AnswerRe: WEB API - POST handler hangs Pin
Richard Deeming22-Mar-17 4:25
mveRichard Deeming22-Mar-17 4:25 
GeneralRe: WEB API - POST handler hangs Pin
Member 1307682222-Mar-17 5:12
Member 1307682222-Mar-17 5:12 
GeneralRe: WEB API - POST handler hangs Pin
Richard Deeming22-Mar-17 5:29
mveRichard Deeming22-Mar-17 5:29 
GeneralRe: WEB API - POST handler hangs Pin
Member 1307682222-Mar-17 5:36
Member 1307682222-Mar-17 5:36 
GeneralRe: WEB API - POST handler hangs Pin
Richard Deeming22-Mar-17 5:45
mveRichard Deeming22-Mar-17 5:45 
GeneralRe: WEB API - POST handler hangs Pin
Member 1307682222-Mar-17 6:12
Member 1307682222-Mar-17 6:12 
GeneralRe: WEB API - POST handler hangs Pin
Richard Deeming22-Mar-17 6:21
mveRichard Deeming22-Mar-17 6:21 
GeneralRe: WEB API - POST handler hangs Pin
Member 1307682222-Mar-17 7:05
Member 1307682222-Mar-17 7:05 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.