请教c#中 如何判断TextBox1和TextBox2中的数值大小 并且打印到页面上
如题:用到三个控件LabelTextBoxbutton判断TextBox1和TextBox2中的数值大小,并且打印到页面上请高手写出后台程序谢谢。...
如题:
用到三个控件 Label TextBox button 判断TextBox1和TextBox2中的数值大小,并且打印到页面上 请高手写出后台程序 谢谢。 展开
用到三个控件 Label TextBox button 判断TextBox1和TextBox2中的数值大小,并且打印到页面上 请高手写出后台程序 谢谢。 展开
展开全部
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
namespace WebApplication2
{
/// <summary>
/// WebForm1 的摘要说明。
/// </summary>
public class WebForm1 : System.Web.UI.Page
{
protected System.Web.UI.WebControls.TextBox TextBox1;
protected System.Web.UI.WebControls.TextBox TextBox2;
protected System.Web.UI.WebControls.Button Button1;
protected System.Web.UI.WebControls.Label Label1;
protected System.Web.UI.WebControls.ListBox ListBox1;
private void Page_Load(object sender, System.EventArgs e)
{
}
#region Web 窗体设计器生成的代码
override protected void OnInit(EventArgs e)
{
//
// CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
//
InitializeComponent();
base.OnInit(e);
}
/// <summary>
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.Button1.Click += new System.EventHandler(this.Button1_Click);
this.Load += new System.EventHandler(this.Page_Load);
}
#endregion
private void Button1_Click(object sender, System.EventArgs e)
{
try
{
int a=Convert.ToInt32(this.TextBox1.Text.ToString().Trim());
int b=Convert.ToInt32(this.TextBox2.Text.ToString().Trim());
if(a>b)
this.Label1.Text="前者大";
if(a<b)
this.Label1.Text="后者大";
if(a==b)
this.Label1.Text="相等";
}
catch(Exception ex)
{
this.Label1.Text="请输入正确的数字类型";
}
}
}
}
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
namespace WebApplication2
{
/// <summary>
/// WebForm1 的摘要说明。
/// </summary>
public class WebForm1 : System.Web.UI.Page
{
protected System.Web.UI.WebControls.TextBox TextBox1;
protected System.Web.UI.WebControls.TextBox TextBox2;
protected System.Web.UI.WebControls.Button Button1;
protected System.Web.UI.WebControls.Label Label1;
protected System.Web.UI.WebControls.ListBox ListBox1;
private void Page_Load(object sender, System.EventArgs e)
{
}
#region Web 窗体设计器生成的代码
override protected void OnInit(EventArgs e)
{
//
// CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
//
InitializeComponent();
base.OnInit(e);
}
/// <summary>
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.Button1.Click += new System.EventHandler(this.Button1_Click);
this.Load += new System.EventHandler(this.Page_Load);
}
#endregion
private void Button1_Click(object sender, System.EventArgs e)
{
try
{
int a=Convert.ToInt32(this.TextBox1.Text.ToString().Trim());
int b=Convert.ToInt32(this.TextBox2.Text.ToString().Trim());
if(a>b)
this.Label1.Text="前者大";
if(a<b)
this.Label1.Text="后者大";
if(a==b)
this.Label1.Text="相等";
}
catch(Exception ex)
{
this.Label1.Text="请输入正确的数字类型";
}
}
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询