1

好的,所以我刚开始使用razor mvc4,并且对c#有一点经验。我目前正在制作一个有按钮的网站。我的html如下:

<button onclick ="vote1_click"  id="VoteButton" value="Vote">Vote</button>

这是在 .cshtml 视图中

然后我有一个类来处理 vote1_click 事件。它在 c# 中,如下所示:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

namespace MvcApplication1
{
    public class voting
    {
        public void vote1_click(object sender, EventArgs e)
        {
        }
    }
}

我相信我的问题是对剃须刀结构的基本理解,但我自己无法弄清楚。

任何帮助都会受到赞赏,当答案很简单时,我会尽量不要觉得太愚蠢。

谢谢!

编辑:

我遇到了一个问题,即 Add(string name) 给我一个错误“并非所有代码路径都返回一个值”

这是我要求的其余代码:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Data.SqlClient;

namespace WAgermanClub.Controllers
{
public class HomeController : Controller
{

    [HttpPost]
    public ActionResult Add(string vote)
    {




        SqlConnection vote1connection = new SqlConnection("user id=userid;" +
                                      "password=validpassword;server=o5z5dpwpzi.database.windows.net;" +
                               "Trusted_Connection=yes;" +
                               "database=wagermanclub_votes; " +
                               "connection timeout=30");
        try
        {
            vote1connection.Open();
        }
        catch (Exception g)
        {
            Console.WriteLine(g.ToString());
        }

        try
        {
            SqlDataReader myReader = null;
            SqlCommand myCommand = new SqlCommand("select * from table", vote1connection);
            myReader = myCommand.ExecuteReader();
            while (myReader.Read())
            {

                Console.WriteLine(myReader["Vote1"].ToString());
            }
        }
        catch (Exception i)
        {
            Console.WriteLine(i.ToString());
        }


        SqlCommand vote1command = new SqlCommand("INSERT INTO table (Column1, Vote1) " +
                              "Values (1, 'Vote1' + 1)", vote1connection);


        vote1command.ExecuteNonQuery();

        try
        {
            vote1connection.Close();
        }
        catch (Exception h)
        {
            Console.WriteLine(h.ToString());
        }






    }
}

}

这是我的 HTML:

@{
ViewBag.Title = "Ideas";

}

 @section featured {
<section class="featured">
    <div class="content-wrapper">
        <hgroup class="title">
            <h1>@ViewBag.Title.</h1>
            <h2>@ViewBag.Message</h2>
        </hgroup>
        <p>

        </p>
    </div>
</section>
}

<body>
<div  style="border: solid; max-width: 300px; margin-left: auto; margin-right: auto">


    @using(Html.BeginForm())
    {

    <input type="submit" value="Vote"/>
    }

 </div>




</body>

谢谢!

4

3 回答 3

9

您对 ASP.NET 网络表单和 MVC 感到困惑。MVC 更多地以经典的 Web(GET-POST 表单)样式工作。您发布带有值的表单。代码隐藏中没有像 Web 表单中那样的点击事件和事件处理程序。

因此,要呈现您的页面,您可能在 HomeController 中有这样的操作方法

public class HomeController : Controller
{
   public ActionResult Add()
   {
     return View();
   }
}

因此,在您的添加视图(剃刀文件)中,您需要一些代码来呈现带有输入元素的表单标签。让我们使用Html.Begin表单助手方法为我们呈现表单标签。

@using(Html.Beginform())
{    
  <input type="text" name="name" />
  <input type="submit" />
}

假设您的 GET 操作方法在 HomeController 中,这将form在您的标记中呈现一个带有操作属性设置为“”的标记。Home/Add(查看页面的查看源代码)

因此,当用户单击提交按钮时,它会将表单发布到Add操作中。所以请确保您在 HomeController 中有一个像这样的操作方法来处理表单发布。(用HttpPost属性装饰的那个

[HttpPost]
public ActionResult Add(string name)
{
  //do something with the posted values
  return RedirectToAction("Success");  // redirecting to another view
}
于 2013-09-07T03:00:28.013 回答
3

您可能会将 webforms 模型与 asp.net mvc 模型混淆。

razor 仅在使用网页或 asp.net mvc 时可供您使用。

对于 asp.net mvc,没有您在此处定义的服务器方法/事件的概念。

您通常需要在控制器中定义操作方法,这些方法将负责处理您发布的任何表单。

您可能想在ASP.NET MVC上查看更多信息

于 2013-09-07T02:54:46.697 回答
2

MVC 不实现 Web 表单样式的视图状态和事件处理程序。所以没有 vote1_click。你想要做的是

1) 创建一个 JavaScript Post/Get 回服务器

或者

2)有一个表单并将所有表单变量发回服务器

这是开始 MVC 的一个很好的例子:http ://www.asp.net/mvc/tutorials/mvc-4/getting-started-with-aspnet-mvc4/intro-to-aspnet-mvc-4

于 2013-09-07T02:54:49.467 回答