我在表视图控制器中使用public partial class Reflection : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
Type type = this.GetType();
foreach(MethodInfo info in type.GetMethods())
{
if (info.Name.StartsWith("DoStuff"))
info.Invoke(this,null);
}
}
public void DoStuff1()
{
Response.Write("DoStuff1<br />");
}
public void DoStuff2()
{
Response.Write("DoStuff2<br />");
}
public void DoStuff3()
{
Response.Write("DoStuff3<br />");
}
}
,当我通过单击右上角的添加按钮插入条目时,表格视图单元格中的标签与预期的大小不同。
但是当我重新启动应用程序时,问题就会消失。发生了什么事?