js给表格动态添加删除行后如何获取数据?????????????

时间:2022-12-08 16:00:15
<script language="javascript" type="text/javascript" >
// Example: obj = findObj("image1");
function findObj(theObj, theDoc)
{
  var p, i, foundObj;
 
  if(!theDoc) theDoc = document;
  if( (p = theObj.indexOf("?")) > 0 && parent.frames.length)
  {
    theDoc = parent.frames[theObj.substring(p+1)].document;
    theObj = theObj.substring(0,p);
  }
  if(!(foundObj = theDoc[theObj]) && theDoc.all) foundObj = theDoc.all[theObj];
  for (i=0; !foundObj && i < theDoc.forms.length; i++)
    foundObj = theDoc.forms[i][theObj];
  for(i=0; !foundObj && theDoc.layers && i < theDoc.layers.length; i++)
    foundObj = findObj(theObj,theDoc.layers[i].document);
  if(!foundObj && document.getElementById) foundObj = document.getElementById(theObj);
 
  return foundObj;
}

//添加一个参与人填写行
function AddSignRow(){
 //读取最后一行的行号,存放在txtTRLastIndex文本框中 
 var txtTRLastIndex = findObj("txtTRLastIndex",document);
 var rowID = parseInt(txtTRLastIndex.value);
 var signFrame = findObj("SignFrame",document);
 //添加行
 var newTR = signFrame.insertRow(signFrame.rows.length);
 newTR.id = "SignItem" + rowID;
 
 //添加列:序号
 var newNameTD=newTR.insertCell(0);
 //添加列内容
 newNameTD.innerHTML = newTR.rowIndex.toString();
 
 //添加列:姓名
 var newNameTD=newTR.insertCell(1);
 //添加列内容
 newNameTD.innerHTML = "<input name='txtName" + rowID + "' id='txtName" + rowID + "' type='text' size='12' />";
 
 //添加列:电子邮箱
 var newEmailTD=newTR.insertCell(2);
 //添加列内容
 newEmailTD.innerHTML = "<input  name='txtEMail" + rowID + "' id='txtEmail" + rowID + "' type='text' size='20' />";
 
 //添加列:电话
 var newTelTD=newTR.insertCell(3);
 //添加列内容
 newTelTD.innerHTML = "<input name='txtTel" + rowID + "' id='txtTel" + rowID + "' type='text' size='10' />";
 
 //添加列:手机
 //var newMobileTD=newTR.insertCell(4);
 //添加列内容
//<input id="File1" type="file" />
 //newMobileTD.innerHTML = "<input name='file" + rowID + "' id='file" + rowID + "' type='file' size='12' />";
 
 //添加列:公司名
 //var newCompanyTD=newTR.insertCell(5);
 //添加列内容
 //newCompanyTD.innerHTML = "<input name='txtCompany" + rowID + "' id='txtCompany" + rowID + "' type='text' size='20' />";
 
 
 //添加列:删除按钮
 var newDeleteTD=newTR.insertCell(4);
 //添加列内容
 newDeleteTD.innerHTML = "<div align='center' style='width:40px'><a href='javascript:;' onclick=\"DeleteSignRow('SignItem" + rowID + "')\">删除</a></div>";
 
 //将行号推进下一行
 txtTRLastIndex.value = (rowID + 1).toString() ;
 //hidden1.value=txtTRLastIndex.value
}

//删除指定行
function DeleteSignRow(rowid){
 var signFrame = findObj("SignFrame",document);
 var signItem = findObj(rowid,document);
 
 //获取将要删除的行的Index
 var rowIndex = signItem.rowIndex;
 
 //删除指定Index的行
 signFrame.deleteRow(rowIndex);
 
 //重新排列序号,如果没有序号,这一步省略
 for(i=rowIndex;i<signFrame.rows.length;i++){
  signFrame.rows[i].cells[0].innerHTML = i.toString();
 }
  //行号减一, add by hyj007
  var txtTRLastIndex = findObj("txtTRLastIndex",document);
  var currentIndex=parseInt(txtTRLastIndex.value);
  txtTRLastIndex.value =(currentIndex-1).toString() ;
}
//清空列表
function ClearAllSign(){
 if(confirm('确定要清空所有参与人吗?')){
  var signFrame = findObj("SignFrame",document);
  var rowscount = signFrame.rows.length;
  
  //循环删除行,从最后一行往前删除
  for(i=rowscount - 1;i > 0; i--){
   signFrame.deleteRow(i);
  }
  
  //重置最后行号为1
  var txtTRLastIndex = findObj("txtTRLastIndex",document);
  txtTRLastIndex.value = "1";
  
  //预添加一行
  AddSignRow();
 }
}

</script>


在上面的js代码是用来给表格动态添加删除行,在给txtName添加runat='server'属性时出错,不能添加。
现在在asp.net后台如何获取每次添加的行中数据的值呢????

3 个解决方案

#1


实际商品化的软件中,表格是“经典画面”的重要组成部分。表格单元中的业务数据往往是有着复杂的结构,好几层嵌套结构,而不是最原始的结构。并且在用户参与的设计中需要不断迅速对结构、样式等等,甚至对表格单元中的东西整个换一个。asp.net的表格控件还不够强大,许多人都继承它修改它扩展它作为自己的新表格。

如果都是你这种表格,哪有用户爱用啊。

真的,如果你使用这种表格,最好放弃asp.net,使用asp或者jsp编程就足够了。

#2


countid是记录表的长度,你每添加或删除一行都要改其中的值
int countid=System.Convert.ToUInt16 (this.txtTRLastIndex.Value.Trim ());//总记录数
for (int i=1;i<=countid-1;i++)
{

string AID=Request.Form["Name_"+i+""];//名称
string Num=Request.Form ["Num_"+i+""];//申请数量
string Price=Request.Form ["Price_"+i+""];//用途
string Sum=Request.Form ["Sum_"+i+""];//申请用途
string Use=Request.Form ["Use_"+i+""];//申请用途
string Memo=Request.Form ["Memo_"+i+""];//申请备注
if(Num !=null && !"".Equals(Num) && AID !=null && !"".Equals(Sum) && AID !=null && !"".Equals(Sum))
{
if (i==1)
{
sqlstr="insert into Lend_Main (lend_id,lend_name,lend_date,sh1,sh2,sh3,sh4,sumprice,status,lend_dept,status1,status2,status3,status4,flag,num) values ('"+lend_id+"','"+username+"','"+time+"','"+shr1+"','"+shr2+"','"+shr3+"','"+shr4+"',"+sum_price+",0,'"+Branch1+"',0,0,0,0,1,"+id2+")";//主表
myDB.ExecuteNonQuery (sqlstr);
sqlstr="select max(ID) as id2 from Lend_Main";
OleDbDataReader mydr6 = myDB.getDataReader(sqlstr);
if( mydr6.Read() )
{
maxid= mydr6["id2"].ToString();
}
mydr6.Close ();
i2=i2+1;
}
sqlstr="insert into Lend_Detail (lend_id,DID,DID_Name,lend_name,lend_dept,BorrowNumber,BorrowUse,BorrowPrice,status,memo5,lend_date,sh1,sh2,sh3,sh4,status1,status2,status3,status4,flag,price) values("+maxid+",'"+AID+"','"+AID+"','"+username+"','"+Branch1+"','"+Num+"','"+Use+"','"+Sum+"',0,'"+Memo+"','"+time+"','"+shr1+"','"+shr2+"','"+shr3+"','"+shr4+"',0,0,0,0,1,'"+Price+"')";//详情表
myDB.ExecuteNonQuery(sqlstr);
}
}

#3


  //行号减一, add by hyj007
  var txtTRLastIndex = findObj("txtTRLastIndex",document);
  var currentIndex=parseInt(txtTRLastIndex.value);
  txtTRLastIndex.value =(currentIndex-1).toString() ;


此处有错,应该删除

#1


实际商品化的软件中,表格是“经典画面”的重要组成部分。表格单元中的业务数据往往是有着复杂的结构,好几层嵌套结构,而不是最原始的结构。并且在用户参与的设计中需要不断迅速对结构、样式等等,甚至对表格单元中的东西整个换一个。asp.net的表格控件还不够强大,许多人都继承它修改它扩展它作为自己的新表格。

如果都是你这种表格,哪有用户爱用啊。

真的,如果你使用这种表格,最好放弃asp.net,使用asp或者jsp编程就足够了。

#2


countid是记录表的长度,你每添加或删除一行都要改其中的值
int countid=System.Convert.ToUInt16 (this.txtTRLastIndex.Value.Trim ());//总记录数
for (int i=1;i<=countid-1;i++)
{

string AID=Request.Form["Name_"+i+""];//名称
string Num=Request.Form ["Num_"+i+""];//申请数量
string Price=Request.Form ["Price_"+i+""];//用途
string Sum=Request.Form ["Sum_"+i+""];//申请用途
string Use=Request.Form ["Use_"+i+""];//申请用途
string Memo=Request.Form ["Memo_"+i+""];//申请备注
if(Num !=null && !"".Equals(Num) && AID !=null && !"".Equals(Sum) && AID !=null && !"".Equals(Sum))
{
if (i==1)
{
sqlstr="insert into Lend_Main (lend_id,lend_name,lend_date,sh1,sh2,sh3,sh4,sumprice,status,lend_dept,status1,status2,status3,status4,flag,num) values ('"+lend_id+"','"+username+"','"+time+"','"+shr1+"','"+shr2+"','"+shr3+"','"+shr4+"',"+sum_price+",0,'"+Branch1+"',0,0,0,0,1,"+id2+")";//主表
myDB.ExecuteNonQuery (sqlstr);
sqlstr="select max(ID) as id2 from Lend_Main";
OleDbDataReader mydr6 = myDB.getDataReader(sqlstr);
if( mydr6.Read() )
{
maxid= mydr6["id2"].ToString();
}
mydr6.Close ();
i2=i2+1;
}
sqlstr="insert into Lend_Detail (lend_id,DID,DID_Name,lend_name,lend_dept,BorrowNumber,BorrowUse,BorrowPrice,status,memo5,lend_date,sh1,sh2,sh3,sh4,status1,status2,status3,status4,flag,price) values("+maxid+",'"+AID+"','"+AID+"','"+username+"','"+Branch1+"','"+Num+"','"+Use+"','"+Sum+"',0,'"+Memo+"','"+time+"','"+shr1+"','"+shr2+"','"+shr3+"','"+shr4+"',0,0,0,0,1,'"+Price+"')";//详情表
myDB.ExecuteNonQuery(sqlstr);
}
}

#3


  //行号减一, add by hyj007
  var txtTRLastIndex = findObj("txtTRLastIndex",document);
  var currentIndex=parseInt(txtTRLastIndex.value);
  txtTRLastIndex.value =(currentIndex-1).toString() ;


此处有错,应该删除