i want read from text box if there ;
make sql qury then work thorw all string's
can any one help C# asp
make sql qury then work thorw all string's
can any one help C# asp
string[] SplitTextBox = TextBox1.Text.Split('|');
for(int i=0;i<SplitTextBox.Length;i++)
{
//do something here.
//string Value = SplitTextBox[i].ToString();
}
source.Split(";".ToCharArray(), StringSplitOptions.RemoveEmptyEntries)
Comment