1
Answer

dropdownlist control in griodview

i have a header text city and city is retrived from database which is in bound field.
i just want to put a drop downlist near to header text city which ave item some city name.
i require when i select the city from drop downlist in gridview. it only show that city grid view.
Answers (1)
0
Vulpes

Vulpes

NA 98.3k 1.5m 12y
Use:

string[] items = fileName.Split('_');

items[0] will be the portion to the first _ and then items[1] will be the portion from the first _ to the second _.

These will exclude the underscores themselves.


Accepted
0
Vulpes

Vulpes

NA 98.3k 1.5m 12y
You could deal with that situation (or even two hyphen delimiters) by replacing this line:

   string[] items = fileName.Split('_');

with this:

   string[] items = fileName.Split(new char[]{'_', '-'});





Next Recommended Forum