function SubmitInfoToServer(){
var RowCount = document.all.Info.rows.length;
var CellCount = document.all.Info.cells.length / RowCount;
var i , j;
for ( i = 0 ; i < RowCount ; i++ )
for ( j = 0 ; j < CellCount ; j++ ){
//这里可以添加代码生成数据,提交给服务器
alert(document.all.Info.rows[i].cells[j].innerText);
}