bt_volver是一个System.Web.UI.webcontrols.button,它只是一个用于在2.0中正常工作的代码
IronPython 2.6.911.0 in ASP.NET webforms
Visual Studio 2008 Professional 9.0.30729.1 SP
cannot access protected member
bt_volver without a python subclass of
abmlocalidades_aspx
Error de código fuente:
Línea 7: else: bt_volver.Visible = 0
答案 0 :(得分:2)
这是已知的更改 - 您应该使用反射来访问受保护和私有成员。
something.GetType().GetField("bt_volver", BindingFlags.Instance | BindingFlags.NonPublic)
或者您可以尝试ipy.exe -X:PrivateBinding
切换。