ASP.NET MVC 排球计分程序 (二)一些排球计分的基本实现方式
2021-07-14 20:07
标签:insert ted button 应用 mit ini begin 就会 rem 一、连接数据库 新建一个MVC应用程序(基本) 建一个HomeController 为Index添加视图 在HomeController里新建一个Action 写入连接数据库的代码 二 、 基本得分的实现方法 新建一个Action 为它添加视图 再添加一个Action 这是这个排球计分程序的基本得分的技术实现 经过一系列判断就会是一个比较复杂的程序 @{ 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@{
ViewBag.Title = "Index";
}
Index
@using(Html.BeginForm("Indexa","Home")) {
id: @Html.TextBox("id",1);
name: @Html.TextBox("name");
}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 = "
";
}
else
{
ViewBag.a += "插入失败";
ViewBag.S = "";
ViewBag.J = "";
}
return View();
}
";
while (dr.Read())
{
ViewBag.a += "编号
名字
";
}
}
ViewBag.a += "
" + dr["id"] + "
" + dr["name"] + "
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);
} public ActionResult Indexc()
{
int a=int.Parse( Request["number"]);
if (a 5)
{
a++;
}
ViewBag.ccc = a.ToString();
return View("Indexb");
}
上一篇:css的颜色表示,与透明度
文章标题:ASP.NET MVC 排球计分程序 (二)一些排球计分的基本实现方式
文章链接:http://soscw.com/essay/105259.html