码迷,mamicode.com
首页 > 其他好文 > 详细

一个控件例子

时间:2016-05-22 13:57:27      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:

做一个简单的加减1操作

技术分享

 1 using System;
 2 using System.Collections.Generic;
 3 using System.Linq;
 4 using System.Web;
 5 using System.Web.UI;
 6 using System.Web.UI.WebControls;
 7 
 8 public partial class UserControls : System.Web.UI.Page
 9 {
10     protected void Page_Load(object sender, EventArgs e)
11     {
12         if (!this.IsPostBack) {
13            this.txtCount.Text = "1";
14         }
15     }
16     protected void btnAdd_Click(object sender, EventArgs e)
17     {
18         this.txtCount.Text = (Convert.ToInt32(txtCount.Text) + 1).ToString();
19     }
20     protected void btnMinus_Click(object sender, EventArgs e)
21     {
22         this.txtCount.Text = (Convert.ToInt32(txtCount.Text) - 1).ToString();
23     }
24 }

*..*Convert.ToInt32:强制类型转换。

解释一下,因为每次用户输入的的数据都是string型的,所以每次以后遇见用户输入结果处理的时候,不要忘了类型装换,(易出错

重中之重的是IsPostBack

解释如图:

技术分享

一个控件例子

标签:

原文地址:http://www.cnblogs.com/chenluomenggongzi/p/5516643.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!