我想在cshtml.cs中编写一个登录功能,以将用户发送到另一个cshtml页面。 如果用户数据正确,则该功能会将用户转到下一页。
public void OnPost()
{
if (LoginCheck())
{
Message = "success";
//Login was a success. Go to the next page
}
else
{
Message = "failure";
//Login was a failure. Noting happens. exept the message
}
}
答案 0 :(得分:0)
我找到了可行的解决方案。也许看起来不太好,但是有效;)
tags = ManyToManyField(Tag)