当前上下文中不存在

当前上下文中不存在

本文介绍了当前上下文中不存在文本框ID?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在我的以下代码中,我收到此错误:

'当前上下文中不存在名称'TB2'。 TextBox位于数据列表中。



In my following codes I get this error:
'The name 'TB2' does not exist in the current context' . The TextBox is within a datalist.

<asp:TextBox Id="TB2" runat="server" Text="" Width="24" OnTextChanged="TB2_TextChanged" MaxLength="6"

Height="12"     BorderStyle="Groove">
</asp:TextBox>







protected void Button18_Click(object sender, EventArgs e)
    {
         string v_ss = TB2.Text;

    }

推荐答案

TextBox startDate = (TextBox)EditTag_DL.FindControl("StartDate");


这篇关于当前上下文中不存在文本框ID?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-02 12:54