我有一个非常愚蠢的查询,几乎太尴尬了发布它。我有一个用C#制作的asp.net网络应用程序,我的问题是这个,我有4个单选按钮,我已经将它们分组,当点击一个时,我想在它们下面设置标签的文本。
我在这个项目中有多个其他页面使用相同的方法并且它们都工作正常但由于某些原因,我无法在选择单选按钮时显示文本。我已经检查过以确保我的所有正确的名称都用于单选按钮/标签等。有人可以查看我的代码,并指出我有多愚蠢吗?提前谢谢!
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace Coursework
{
public partial class Payment : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void poundRadBtn_CheckedChanged(object sender, EventArgs e)
{
if (poundRadBtn.Checked)
{
costLbl.Text = ("Testing");
}
}
}
}
答案 0 :(得分:1)
检查AutoPostBack="true"
asp:RadioButton
<asp:RadioButton id="poundRadBtn" runat="server" **AutoPostBack="true"**>
</asp:RadioButton>