-1

テキスト ボックスからデータを読み取る際にエラーが発生しました。XML コードは次のとおりです。

    <asp:Button ID="btnSearch" runat="server" Style="z-index: 100; left: 513px; position: absolute;
        top: 340px" Text="Search" Width="188px"/>
    <asp:TextBox ID="MyTB" runat="server" Style="z-index: 101; left: 365px; position: absolute;
        top: 302px" Width="493px"/>

テキストボックス「MyTB」を呼び出してデータを読み取るコードは次のとおりです。

    protected void btnSearch_Click(object sender, EventArgs e)
    {
        string text = MyTB.Text;

        string[] textArr = text.Split(new char[] { ' ', '\n', ',' });
    }

XML コード:

<div>
    <asp:Button ID="btnSearch" runat="server" Style="z-index: 100; left: 513px; position: absolute;
        top: 340px" Text="Search" Width="188px"/>
    <asp:TextBox ID="MyTB" runat="server" Style="z-index: 101; left: 365px; position: absolute;
        top: 302px" Width="493px"/>


</div>
4

1 に答える 1

0

コードは正しいようです。ページのdesigner.csファイルをチェックして、MyTB が定義されていることを確認できます。

protected global::System.Web.UI.WebControls.TextBox MyTB; 
于 2012-05-22T00:25:49.997 に答える