下面这段代码老是报错:“int”并不包含“TbString”的定义。求高手给予指点!
public partial class Default2 : System.Web.UI.Page{
protected void Page_Load(object sender, EventArgs e)
{for(int i=1;i<=9;i++)
{for(int j=1;j<=i;j++)
{Response.Write(i.TbString()+""+j.TbString()+"="+(i*j).TbString());
Response.Write (" ");
}
}
Response .Write ("<br/>");
}
}