动态从后台获取前台值
页面自动生成了一批文本框类似如: 
  <input   type= "text "   runat= "server "   name= "txt_T_K_73 "   id= "txt_T_K_73 ">  
  <input   type= "text "   runat= "server "   name= "txt_T_L_73 "   id= "txt_T_L_73 ">  
 。 
 。 
 。 
  <input   type= "text "   runat= "server "   name= "txt_T_L_77 "   id= "txt_T_L_77 ">      
 现在需要从传过来的数组中值   得到类似下面方法的文本框内容   
 string   val= "txt_ "+arr3[k][j].ToString()+ "_73.value ";     
 上面的这一句如何能得到文本框的值? 
------解决方案--------------------前台要提交,后台才能通过得到吧, 
 如果不提交 
 那通过JS+WEBSERVICE应该能取到
------解决方案--------------------前台使用getElementById来定位控件,然后得到其value属性
------解决方案--------------------后台看能不能用request[ "控件name“]得到其值