本文介绍了无法获得文本框值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
protected void lnk_Click(object sender, EventArgs e)
{
for (int i = 0; i < 10; i++) // Loop for Row
{
string txtvalue1 = "TextBoxCol_" + i.ToString();
TextBox txt1 = (TextBox)Page.FindControl(txtvalue1);
if (txt1 != null)
{
try
{
string strText1 = txt1.Text;
// int ItemId = TaxItemMasterPayrollDB.AddItem(str);
}
catch (Exception ex)
{
throw ex;
//lbl_error.Text = "There is a Problem while creating Account ";
}
}
推荐答案
这篇关于无法获得文本框值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!