我用了以下方法,都不行:
protected string[,] tpshu
{
  get
   {
      return (string[,])ViewState["tpshu"];
   }
  set
   {
      ViewState["tpshu"]=value;
   }
}
--------------------------------------------------------------------protected string[,] tpshu;
if(!IsPostBack)
{
//数组初始化
   tpshu=new string[10,2];
}///
帮帮忙