-1
這是我的代碼在Index.aspx
頁面。MVC 2按鈕點擊事件不起作用
當我點擊按鈕時,點擊事件沒有被激怒。
我ASP.NET
和MVC
也很新..
plz幫助我。在Index.aspx的
protected void LogIn_Click(object sender, EventArgs e)
{
LoginForm.Models.LoginDetails objLogin = new LoginForm.Models.LoginDetails();
objLogin.Name = (Request.Form["Name"].ToString());
objLogin.Password = (Request.Form["Password"].ToString());
if (objLogin.Name == "EMP75" && objLogin.Password == "[email protected]")
{
Response.Redirect("~/Login/Details");
}
}
<asp:Button ID="aa" Text="Login" OnClick="LogIn_Click" runat="server" />
不,我正在使用MVC,我認爲我們需要在index.aspx頁面中編寫按鈕單擊事件iteself .. ??儘管如果我在onCLientClick屬性上編寫JavaScript,它確實會根據添加的腳本顯示並顯示 - 它確實顯示「hi」消息,點擊按鈕 –
Vishal