5
Answers

Help Regarding check availability

arun prasath

arun prasath

13y
2.1k
1
Hi,

I want to add record in designation table, if user enters a designation means it automatically search in database , if its found na display error message otherwise execute the insert query,...Now  i complete insert code and required field validation,...i don't know how to do the search in database...Please Help Me to do this Search...

Thanks!

Regards!

G.Arun Prasath
Answers (5)
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[]{'_', '-'});