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();
}