Click here to Skip to main content
15,885,908 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: How to navigate from one page to another in ASP.Net MVC and Web Api application Pin
F-ES Sitecore25-Jun-17 23:01
professionalF-ES Sitecore25-Jun-17 23:01 
GeneralRe: How to navigate from one page to another in ASP.Net MVC and Web Api application Pin
indian14326-Jun-17 8:28
indian14326-Jun-17 8:28 
GeneralRe: How to navigate from one page to another in ASP.Net MVC and Web Api application Pin
jkirkerx26-Jun-17 13:26
professionaljkirkerx26-Jun-17 13:26 
GeneralRe: How to navigate from one page to another in ASP.Net MVC and Web Api application Pin
F-ES Sitecore26-Jun-17 22:53
professionalF-ES Sitecore26-Jun-17 22:53 
GeneralRe: How to navigate from one page to another in ASP.Net MVC and Web Api application Pin
indian14327-Jun-17 7:17
indian14327-Jun-17 7:17 
GeneralRe: How to navigate from one page to another in ASP.Net MVC and Web Api application Pin
Richard Deeming27-Jun-17 9:31
mveRichard Deeming27-Jun-17 9:31 
GeneralRe: How to navigate from one page to another in ASP.Net MVC and Web Api application Pin
indian14327-Jun-17 11:55
indian14327-Jun-17 11:55 
GeneralRe: How to navigate from one page to another in ASP.Net MVC and Web Api application Pin
F-ES Sitecore27-Jun-17 22:31
professionalF-ES Sitecore27-Jun-17 22:31 
$.get is for when you want to download the html of that url and do something with it in your code, it won't show that page in the browser or navigate to it. If MultiJobChange is a partial view you need to inject the html into the page somewhere.

public class MultiJobChangeController : Controller
{
    // GET: MultiJobChange
    public ActionResult Index()
    {
        return PartialView("~/Views/MultiJobChange/_Index.cshtml");
    }
}


<div id="target"></div>

<script>
    $(document).ready(function () {
        $.get("@Url.Action("Index", "MultiJobChange")", function (data) {
            $("#target").html(data);
        });
    });
</script>


or you can use load if you only want to load the html into the div

$(document).ready(function () {
    $("#target").load("@Url.Action("Index", "MultiJobChange")");
});

GeneralRe: How to navigate from one page to another in ASP.Net MVC and Web Api application Pin
indian14328-Jun-17 6:40
indian14328-Jun-17 6:40 
GeneralRe: How to navigate from one page to another in ASP.Net MVC and Web Api application Pin
F-ES Sitecore28-Jun-17 22:22
professionalF-ES Sitecore28-Jun-17 22:22 
GeneralRe: How to navigate from one page to another in ASP.Net MVC and Web Api application Pin
indian14328-Jun-17 6:44
indian14328-Jun-17 6:44 
QuestionHTTP Error 500.19 - Internal Server Error Pin
indian14321-Jun-17 11:29
indian14321-Jun-17 11:29 
AnswerRe: HTTP Error 500.19 - Internal Server Error Pin
F-ES Sitecore21-Jun-17 22:41
professionalF-ES Sitecore21-Jun-17 22:41 
GeneralRe: HTTP Error 500.19 - Internal Server Error Pin
indian14322-Jun-17 7:38
indian14322-Jun-17 7:38 
AnswerRe: HTTP Error 500.19 - Internal Server Error Pin
Richard Deeming22-Jun-17 1:25
mveRichard Deeming22-Jun-17 1:25 
QuestionPosting the same form on 10 pages to a single action on a controller Pin
jkirkerx21-Jun-17 7:36
professionaljkirkerx21-Jun-17 7:36 
AnswerRe: Posting the same form on 10 pages to a single action on a controller Pin
Richard Deeming21-Jun-17 8:59
mveRichard Deeming21-Jun-17 8:59 
GeneralRe: Posting the same form on 10 pages to a single action on a controller Pin
jkirkerx22-Jun-17 12:56
professionaljkirkerx22-Jun-17 12:56 
QuestionMVC controller attribute to select SSL for individual pages, manually select, force SSL off Pin
jkirkerx19-Jun-17 11:29
professionaljkirkerx19-Jun-17 11:29 
AnswerRe: MVC controller attribute to select SSL for individual pages, manually select, force SSL off Pin
Richard Deeming19-Jun-17 11:48
mveRichard Deeming19-Jun-17 11:48 
GeneralRe: MVC controller attribute to select SSL for individual pages, manually select, force SSL off Pin
jkirkerx19-Jun-17 12:22
professionaljkirkerx19-Jun-17 12:22 
GeneralRe: MVC controller attribute to select SSL for individual pages, manually select, force SSL off Pin
jkirkerx20-Jun-17 13:02
professionaljkirkerx20-Jun-17 13:02 
QuestionShould a REST API return exception in response body? Pin
Bastien Vandamme19-Jun-17 1:58
Bastien Vandamme19-Jun-17 1:58 
AnswerRe: Should a REST API return exception in response body? Pin
John C Rayan19-Jun-17 3:21
professionalJohn C Rayan19-Jun-17 3:21 
QuestionHow to save HTML Table to database Pin
Member 1053560718-Jun-17 9:24
Member 1053560718-Jun-17 9:24 

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.