-1
存在從這裏文本框中讀取數據中的錯誤的XML代碼:如何從ASP C#中的文本框中讀取數據?
<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>
什麼錯誤? –
你正在收到的錯誤究竟是什麼?因爲你迄今爲止所展示的應該是有效的。 – NotMe
什麼是錯誤?您的代碼來閱讀文本文本屬性是正確的。 – mellodev