ASP.NET MVC 排球计分程序 (二)一些排球计分的基本实现方式

2021-07-14 20:07

阅读:422

标签:insert   ted   button   应用   mit   ini   begin   就会   rem   

一、连接数据库

新建一个MVC应用程序(基本)

建一个HomeController

为Index添加视图

 

@{

    ViewBag.Title = "Index";

}

 

Index

@using(Html.BeginForm("Indexa","Home")) { id: @Html.TextBox("id",1); name: @Html.TextBox("name"); }

 

在HomeController里新建一个Action 写入连接数据库的代码

public ActionResult Indexa()

        {

            SqlConnection conn = new SqlConnection();

            conn.ConnectionString = @"Data Source=.;Initial Catalog=paiqiu;Integrated Security=True";

            SqlCommand comm = new SqlCommand();

            comm.Connection = conn;

            string aa=Request["id"].ToString();

            int c = int.Parse(aa);

            string aaa = Request["name"].ToString();

         

            comm.CommandText = "insert into yifu (id,name) values ("+c+",‘"+aaa+"‘)";

            conn.Open();

            int a = comm.ExecuteNonQuery();

            conn.Close();

            if (a > 0)

            {

                ViewBag.S = "插入成功";

                ViewBag.J = "插入结果为";

                comm.CommandText = "select *from yifu";

                conn.Open();

                SqlDataReader dr = comm.ExecuteReader();

                if (dr.HasRows)

                {

                    ViewBag.a = "";

                    while (dr.Read())

                    {

                        ViewBag.a += "";

                    }

                }

                ViewBag.a += "
编号 名字
" + dr["id"] + " " + dr["name"] + "
"; } else { ViewBag.a += "插入失败"; ViewBag.S = ""; ViewBag.J = ""; } return View(); }

二 、 基本得分的实现方法

新建一个Action

public ActionResult Indexb()
        {
            
            return View();
        }

为它添加视图

@{
    ViewBag.Title = "Indexb";
}

Indexb

@using (Html.BeginForm("Indexc", "Home")) { string str=ViewBag.ccc; if (string.IsNullOrEmpty(str)) { str = "0"; } @Html.TextBox("number",str); }

再添加一个Action

   

   public ActionResult Indexc()

        {

           int a=int.Parse( Request["number"]);



           if (a 5)

           {

               a++;

           }

            ViewBag.ccc = a.ToString();

            return View("Indexb");

        }

这是这个排球计分程序的基本得分的技术实现

 

经过一系列判断就会是一个比较复杂的程序

@{

    ViewBag.Title = "Indexb";

}

 

h2>Indexbh2>

@using (Html.BeginForm("Indexc", "Home"))

{

    string str=ViewBag.ccc;

    if (string.IsNullOrEmpty(str))

    {

        str = "0";

    }

    @Html.TextBox("number",str);

    buttontype="submit">得分button>

}

再添加一个Action

      publicActionResult Indexc()

        {

           int a=int.Parse( Request["number"]);

 

           if (a

           {

               a++;

           }

            ViewBag.ccc = a.ToString();

            return View("Indexb");

        }

ASP.NET MVC 排球计分程序 (二)一些排球计分的基本实现方式

标签:insert   ted   button   应用   mit   ini   begin   就会   rem   

原文地址:http://www.cnblogs.com/zyadmin/p/7074190.html


评论


亲,登录后才可以留言!