Answer the question
In order to leave comments, you need to log in
How to process the received View in js?
function A() {
$.get("/Home/B", {
"Email": document.getElementById("Email").value,
"Password": document.getElementById("Pass").value },
function (data) {
// ......
});
[HttpGet]
public ActionResult B(string Email, string Password)
{
//some code
return View();
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question