刚学ASP.net,请教一个提交页面的问题
Default.aspx:<%@PageLanguage="C#"AutoEventWireup="true"CodeFile="~/Default.aspx.cs"In...
Default.aspx:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="~/Default.aspx.cs" Inherits="program" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
</head>
<body>
<form id="form1" runat="server">
<div>
操作数1:<asp:TextBox ID="T1" runat="server"></asp:TextBox>
运算符:<asp:ListBox ID="fuhao" Rows="1" runat="server" SelectionMode="Single">
<asp:ListItem Value="+">+</asp:ListItem>
<asp:ListItem Value="-">-</asp:ListItem>
<asp:ListItem Value="*">*</asp:ListItem>
<asp:ListItem Value="/">/</asp:ListItem>
</asp:ListBox>
操作数2:<asp:TextBox ID="T2" runat="server"></asp:TextBox>
<asp:Button ID="B1" runat="server" Text="计算" />
</div>
<p></p>
<div>
<asp:Label ID="L1" runat="server"></asp:Label>
</div>
</form>
</body>
</html>
Default.aspx.cs
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public partial class program : System.Web.UI.Page
{
protected void B1_Click(object sender, EventArgs e)
{
L1.Text = "123";
}
}
为什么单击按钮后,L1.Text没出现123?是不是我两个文件没连接? 展开
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="~/Default.aspx.cs" Inherits="program" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
</head>
<body>
<form id="form1" runat="server">
<div>
操作数1:<asp:TextBox ID="T1" runat="server"></asp:TextBox>
运算符:<asp:ListBox ID="fuhao" Rows="1" runat="server" SelectionMode="Single">
<asp:ListItem Value="+">+</asp:ListItem>
<asp:ListItem Value="-">-</asp:ListItem>
<asp:ListItem Value="*">*</asp:ListItem>
<asp:ListItem Value="/">/</asp:ListItem>
</asp:ListBox>
操作数2:<asp:TextBox ID="T2" runat="server"></asp:TextBox>
<asp:Button ID="B1" runat="server" Text="计算" />
</div>
<p></p>
<div>
<asp:Label ID="L1" runat="server"></asp:Label>
</div>
</form>
</body>
</html>
Default.aspx.cs
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public partial class program : System.Web.UI.Page
{
protected void B1_Click(object sender, EventArgs e)
{
L1.Text = "123";
}
}
为什么单击按钮后,L1.Text没出现123?是不是我两个文件没连接? 展开
4个回答
展开全部
注意onclick事件
操作数2:<asp:TextBox ID="T2" runat="server"></asp:TextBox>
<asp:Button ID="B1" runat="server" Text="计算" OnClick="B1_Click" />
另外你的pageload呢?
把下面的这部分粘贴到aspx文件裏
另外如果你想添加button控件的事件可以在设计页面双击button
也可以在属性窗口的事件栏双击添加自己需要的事件
<title>无标题页</title>
</head>
<body>
<form id="form1" runat="server">
<div>
操作数1:<asp:TextBox ID="T1" runat="server"></asp:TextBox>
运算符:<asp:ListBox ID="fuhao" Rows="1" runat="server" SelectionMode="Single">
<asp:ListItem Value="+">+</asp:ListItem>
<asp:ListItem Value="-">-</asp:ListItem>
<asp:ListItem Value="*">*</asp:ListItem>
<asp:ListItem Value="/">/</asp:ListItem>
</asp:ListBox>
操作数2:<asp:TextBox ID="T2" runat="server"></asp:TextBox>
<asp:Button ID="B1" runat="server" Text="计算" OnClick="B1_Click" />
</div>
<p></p>
<div>
<asp:Label ID="L1" runat="server"></asp:Label>
</div>
</form>
</body>
</html>
操作数2:<asp:TextBox ID="T2" runat="server"></asp:TextBox>
<asp:Button ID="B1" runat="server" Text="计算" OnClick="B1_Click" />
另外你的pageload呢?
把下面的这部分粘贴到aspx文件裏
另外如果你想添加button控件的事件可以在设计页面双击button
也可以在属性窗口的事件栏双击添加自己需要的事件
<title>无标题页</title>
</head>
<body>
<form id="form1" runat="server">
<div>
操作数1:<asp:TextBox ID="T1" runat="server"></asp:TextBox>
运算符:<asp:ListBox ID="fuhao" Rows="1" runat="server" SelectionMode="Single">
<asp:ListItem Value="+">+</asp:ListItem>
<asp:ListItem Value="-">-</asp:ListItem>
<asp:ListItem Value="*">*</asp:ListItem>
<asp:ListItem Value="/">/</asp:ListItem>
</asp:ListBox>
操作数2:<asp:TextBox ID="T2" runat="server"></asp:TextBox>
<asp:Button ID="B1" runat="server" Text="计算" OnClick="B1_Click" />
</div>
<p></p>
<div>
<asp:Label ID="L1" runat="server"></asp:Label>
</div>
</form>
</body>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你的button事件是自己写的吧?
页面也要写。用guzuqiang - 试用期 一级的方法
如果你是2003,那还要在设计写委托
建议你直接从界面点进去,这样他会全部生成,不用写
页面也要写。用guzuqiang - 试用期 一级的方法
如果你是2003,那还要在设计写委托
建议你直接从界面点进去,这样他会全部生成,不用写
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
楼上说得对,你没给Button 添加事件
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<asp:Button ID="B1" runat="server" Text="计算" OnClick="B1_Click" />
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询