Tech
Forums
Jobs
Books
Events
Videos
Live
More
Interviews
Certification
Training
Career
Members
News
Blogs
Contribute
An Article
A Blog
A Video
An Ebook
An Interview Question
Register
Login
2
Answers
ASP.Net MVC: regarding RedirectToAction function
tri_inn
7y
416
1
Reply
suppose i have two action in controller called login
public
ActionResult Login()
{
return
View();
}
[HttpPost]
[ValidateAntiForgeryToken]
public
ActionResult Login(UserProfile objUser)
{
if
(ModelState.IsValid)
{
using
(DB_Entities db =
new
DB_Entities())
{
var obj = db.UserProfiles.Where(a => a.UserName.Equals(objUser.UserName) && a.Password.Equals(objUser.Password)).FirstOrDefault();
if
(obj !=
null
)
{
Session[
"UserID"
] = obj.UserId.ToString();
Session[
"UserName"
] = obj.UserName.ToString();
return
RedirectToAction(
"UserDashBoard"
);
}
}
}
return
View(objUser);
}
when we write
return RedirectToAction(
"Login"
);
then how asp.net mvc understand that we are thinking about login function which uisng get http verb login not post
http verb
login ?
anyone can explian it ?
how we can redirect to action which is based on post http verb ?
what will be the syntax if we need to redirect to action with http verb if we use
RedirectToAction
function ?
thanks
Post
Reset
Cancel
Answers (
2
)
Next Recommended Forum
ASP.NET Core: Data Grid - Problem with Update Operation
saving multiple data into ms-sql at once using asp.net