if(!Page.IsPostBack)
{
test1.Text = Loadfile("test1.aspx"); 
test2.Text = Loadfile("test2.aspx"); 
}
public string Loadfile(string filename)同时使用使用两次 loadURL,默认第二个控件上会把第一个上的也显示出来,
test1 显示 1
test2 显示 1和2
应该使用什么方法,再第二次调用的时候不显示第一次调用的内容呢?
请多指教,多谢!