首先页面加载并显示一个空文本框和一个按钮“GO”
单击“GO”按钮后,页面中已有的radioButtonList将根据文本框中的文本从表中加载。
radioButtonList显示新按钮“Made my choice”。
用户选择一个按钮并单击“我的选择”。
在检查所选值或索引时,根本不检查radiobuttonList ...
就是这样 TVM Ricardo Conte
答案 0 :(得分:0)
如果您未在Page.IspostBack
中使用Page_Load
属性,请尝试使用
if(!Page.IsPostBack)
{
// Your Code..
}
进入Page_Load
。检查MSDN
希望它适合你。
答案 1 :(得分:0)
protected void Page_Load(object sender, EventArgs e)
{
// Your code execute always
if(!Page.IsPostBack)
{
// Code which is execute without postback
}
}