我在更新面板内的转发器内有一个单选按钮。当我点击单选按钮然后重新加载整个页面。这段相同的代码在Visual Studio 2008中完美运行,但在2010年没有运行。
... ASPX
protected void rptSizeType_OnItemDataBound(object sender, RepeaterItemEventArgs e)
{
// Code for bind rptSizeType
}
protected void rbSizeType_CheckedChanged(object sender, EventArgs e)
{
// Code for bind rptSize
}
...代码
{{1}}
答案 0 :(得分:0)
我找到解决方案只需将ClientIDMode =" AutoID"当使用.net 4.0
时