Hello
For Example My Texbox shoows Like This Banner1.Jpg,banenr2.jpb,banner3.jpg
I want to show in textbox2 on button click Banner1.jpg that is first word whatever use select
how to do so using asp.net c#
Use string.Split(',')...
textbox2.Text = Textbox.Text.Split(',')[0];
Please set aside time to read the entire doc and go through a few code examples.