本文目录一览

1,ASPNET制作简易计算器问题

给 TextBox1加个TextChanged事件 protected void TextBox1_TextChanged(object sender, EventArgs e) TextBox3.Text = TextBox1.Text; }

ASPNET制作简易计算器问题

2,计算器怎么做

使用计算器的步骤 00:00 / 02:2970% 快捷键说明 空格: 播放 / 暂停Esc: 退出全屏 ↑: 音量提高10% ↓: 音量降低10% →: 单次快进5秒 ←: 单次快退5秒按住此处可拖拽 不再出现 可在播放器设置中重新打开小窗播放快捷键说明

计算器怎么做

3,用 VB NET制作计算器

Private Sub button1_Click() If InStr(Textbox1.Text, ".") Then Exit Sub Else Text1.Text = Text1.Text & "." End If End Sub

用 VB NET制作计算器

4,用Visual Studio 2008设计一个ASPNET网页程序简单计算器的设计

做一个加法运算为例,点击Button触发事件 在窗体下实行代码如下: if (textBox1.Text == "" || textBox2.Text == "") MessageBox.Show("没有操作数"); } int a, b, c; a = int.Parse(textBox1.Text); b = int.Parse(textBox2.Text); c = a + b; textBox3.Text = c.ToString(); }
不是在这里,你添加button,然后双击自动跳转到添加事件处理函数,然后添加就好了

5,怎么用ASPnet做计算

这个很简单啊 select (价格+出差费)*2 as 平均价格 from [你的数据表]
呵呵,你这个问题,你所定义的一个月是多少天 28,29,30,31?如果定义出来那就好算了 使用timespan 函数 比如 datetime dt1=datetime.paras("2012-1-20")datetime dt2=datetime.paras("2012-3-5")timespan ts=dt2-dt1接下来就要看你1个月多少天了ts.dayts.monthts.yearts.hourts......什么什么的这个ts可以点出各种时间单位 我看你的最小单位是天 好吧 那就ts.day 计算出来多少天了,月么,那就回到上面的问题了,1个月几天了? 如果是30 那就 ts.day/30 那就是月了 再计算个余数 那就是天了纯手写。。。
这个很简单啊select (价格+出差费)*2 as 平均价格 from [你的数据表]

6,用ASPNET编写一个计算器能实现加减乘除的

贴个最简单的吧:Operation类:class Operation public static double GetResult(double numberA, double numberB, string operate) double result = 0d; switch (operate) case "+": result = numberA + numberB; break; case "-": result = numberA - numberB; break; case "*": result = numberA * numberB; break; case "/": result = numberA / numberB; break; } return result; } }Program.cs:class Program static void Main(string[] args) Console.WriteLine("请输入数字A:"); string strNumberA = Console.ReadLine(); Console.WriteLine("请输入运算符号(+ - * /)"); string strOperate = Console.ReadLine(); Console.WriteLine("请输入数字B:"); string strNumberB = Console.ReadLine(); string strResult; strResult = Convert.ToString(Operation.GetResult(Convert.ToDouble(strNumberA), Convert.ToDouble(strNumberB), strOperate)); Console.WriteLine("结果是:" + strResult); Console.ReadLine(); } }
dim v as booleandim s as integerdim x as doubledim y as doubleprivate sub command1_click(index as integer) if form1.tag = "t" then if index = 10 then text1.text = "0" else text1.text = command1(index).caption end if form1.tag = "" else text1.text = text1.text & command1(index).caption end ifend subprivate sub command2_click(index as integer) form1.tag = "t" if v then x = val(text1.text) v = not v else y = val(text1.text) select case s case 0 text1.text = x + y case 1 text1.text = x - y case 2 text1.text = x * y case 3 if y <> 0 then text1.text = x / y else msgbox ("不能以0为除数") text1.text = x v = false end if case 4 y = 0 v = false end select x = val(text1.text) end if s = indexend subprivate sub frame1_dragdrop(source as control, x as single, y as single)end sub控件自己添加吧,空间名要和代码名一致

7,如何在aspnet中用c做在线人数计数器

一、用户显示页面的使用 首先,我们来看看怎样现实当前网站的访问用户数量,程序代码如下:<%@ Page Language="c#" debug="true" %><html><head><SCRIPT LANGUAGE="c#" RUNAT="server">private void Page_Load(object sender, System.EventArgs e)二、global.asax文件实现 global.asax文件的作用我们自不必说,现在,我们直接来看统计当前在线用户数量如何实现:<script language="c#" runat="Server">protected void Application_Start(Object sender, EventArgs e)以上代码很容易理解,当网站开始服务的时候(Application开始的时候),程序设置Application["user_sessions"]为零,然后,当用户进入网站(Session开始的时候)的时候,锁定Application,然后,将application("user_sessions")加一,用户退出网站的时候,application("user_sessions")减一。这样,就很巧妙的实现了在线用户的统计。
一、用户显示页面的使用 首先,我们来看看怎样现实当前网站的访问用户数量,程序代码如下:<%@ Page Language="c#" debug="true" %><html><head><SCRIPT LANGUAGE="c#" RUNAT="server">private void Page_Load(object sender, System.EventArgs e)二、global.asax文件实现 global.asax文件的作用我们自不必说,现在,我们直接来看统计当前在线用户数量如何实现:<script language="c#" runat="Server">protected void Application_Start(Object sender, EventArgs e)以上代码很容易理解,当网站开始服务的时候(Application开始的时候),程序设置Application["user_sessions"]为零,然后,当用户进入网站(Session开始的时候)的时候,锁定Application,然后,将application("user_sessions")加一,用户退出网站的时候,application("user_sessions")减一。这样,就很巧妙的实现了在线用户的统计。
先添加一个“全局程序集文件_Global.asax” void Application_Start(object sender, EventArgs e) Application["count"] = 0;//初始化人数为0} void Session_Start(object sender, EventArgs e) Session.Timeout = 1;//超时时间为1分钟 Application.Lock(); Application["count"] = (int)Application["count"] + 1; Application.UnLock(); } void Session_End(object sender, EventArgs e) Application.Lock(); Application["count"] = (int)Application["count"] - 1; Application.UnLock(); }/// /// 页面加载的代码 /// /// /// protected void Page_Load(object sender, EventArgs e) if (
建议使用静态变量来存储人数,Application集合是弱类型的,会有装箱/拆箱的损耗,主要为了兼容ASP程序的,不推荐使用。
先添加一个“全局程序集文件_Global.asax” void Application_Start(object sender, EventArgs e) Application["count"] = 0;//初始化人数为0} void Session_Start(object sender, EventArgs e) Session.Timeout = 1;//超时时间为1分钟 Application.Lock(); Application["count"] = (int)Application["count"] + 1; Application.UnLock(); } void Session_End(object sender, EventArgs e) Application.Lock(); Application["count"] = (int)Application["count"] - 1; Application.UnLock(); }/// <summary> /// 页面加载的代码 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> protected void Page_Load(object sender, EventArgs e) if (!IsPostBack) Label1.Text = Application["count"].ToString() + "人"; } }ok~
建议使用静态变量来存储人数,Application集合是弱类型的,会有装箱/拆箱的损耗,主要为了兼容ASP程序的,不推荐使用。

8,求在ASPNET中用C写一个简单的页面计算器

解决这个问题与ASP.NET没有直接关系。我要说的是,如果我们设计的东西不需要与服务器端交互,则直接在客户端处理。这个问题完全可以由 Html + javascript 解决!如果客户端的呈现 依赖与服务端的行为则采用与服务端的交互..
课后作业 自己做白, 你可以参考一下 ASP.NET技术大全
文件:Calculate.aspxbin/Calculate.csbin/Calculate.bat步骤:1.Calculate.csnamespace Calculateusing System;public class math public int Add(int a,int b)return a+b;}public int Sub(int a,int b)return a-b;}public int Mul(int a,int b)return a*b;}public String Colorget return _color;}set _color=value;}}}}2.Calculate.batcsc /t:library /out:Calculate.dll Calculate.cs3.执行Calculate.bat4.Calculate.aspx<%@Import NameSpace="Calculate"%><script language="c#" runat="server">public String color;void DoAdd(Object Src, EventArgs E)math math=new math();Message.Text=math.Add(Convert.ToInt32(A.Value),Convert.ToInt32(B.Value)).ToString();math.Color=C.Value;color=math.Color;}void DoSub(Object Src, EventArgs E)math math=new math();Message.Text=math.Sub(Convert.ToInt32(A.Value),Convert.ToInt32(B.Value)).ToString();math.Color=C.Value;color=math.Color;}void DoMul(Object Src, EventArgs E)math math=new math();Message.Text=math.Mul(Convert.ToInt32(A.Value),Convert.ToInt32(B.Value)).ToString();math.Color=C.Value;color=math.Color;}</script><font id=Cau color=<%Response.Write(color);%>>用ASP+写得简易计算器</font><form runat="server"><input id="A" runat="server"/><input id="B" runat="server"/><input id="C" runat="server"/><asp:button Text="Add" OnClick="DoAdd" runat="server"/><asp:button Text="Sub" OnClick="DoSub" runat="server"/><asp:button Text="Mul" OnClick="DoMul" runat="server"/></form>Result:<asp:label id=Message runat="server"/>文件:Calculate.aspxbin/Calculate.csbin/Calculate.bat步骤:1.Calculate.csnamespace Calculateusing System;public class math public int Add(int a,int b)return a+b;}public int Sub(int a,int b)return a-b;}public int Mul(int a,int b)return a*b;}public String Colorget return _color;}set _color=value;}}}}2.Calculate.batcsc /t:library /out:Calculate.dll Calculate.cs3.执行Calculate.bat4.Calculate.aspx<%@Import NameSpace="Calculate"%><script language="c#" runat="server">public String color;void DoAdd(Object Src, EventArgs E)math math=new math();Message.Text=math.Add(Convert.ToInt32(A.Value),Convert.ToInt32(B.Value)).ToString();math.Color=C.Value;color=math.Color;}void DoSub(Object Src, EventArgs E)math math=new math();Message.Text=math.Sub(Convert.ToInt32(A.Value),Convert.ToInt32(B.Value)).ToString();math.Color=C.Value;color=math.Color;}void DoMul(Object Src, EventArgs E)math math=new math();Message.Text=math.Mul(Convert.ToInt32(A.Value),Convert.ToInt32(B.Value)).ToString();math.Color=C.Value;color=math.Color;}</script><font id=Cau color=<%Response.Write(color);%>>用ASP+写得简易计算器</font><form runat="server"><input id="A" runat="server"/><input id="B" runat="server"/><input id="C" runat="server"/><asp:button Text="Add" OnClick="DoAdd" runat="server"/><asp:button Text="Sub" OnClick="DoSub" runat="server"/><asp:button Text="Mul" OnClick="DoMul" runat="server"/></form>Result:<asp:label id=Message runat="server"/>

文章TAG:aspnetaspnet  怎么  计算  
下一篇