Click here to Skip to main content
15,888,984 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
HI,i have a resume from my project directory.i have develop a page where user can search the resume to enter the string e.g .net,c#,sql

if user will click the search button then resume will show in panel which contain .net,c#,sql.

How it is possible .Please help me out
Posted
Comments
Mehdi Gholam 24-Sep-12 5:42am    
Sounds like homework.
Pradhan Gagan 24-Sep-12 5:47am    
please give some tips how it is possible

for your solution you need something like this....


1) go through all resume contains in your directory
2) read text from file one by one and if it will contains your search text then list out that
3) after reading all the resume display the result as file name matched your search criteria.


so you need to use some System.IO (File system reading) functionality to achieve your output.
 
Share this answer
 
Comments
Strange_Pirate 27-Sep-12 6:34am    
Your solution is not a very time consuming .?
Suggest some flexi. solution to do so.
Strange_Pirate 27-Sep-12 7:01am    
Please provide a demo example if you can .!!
There is the brute force approach:
Read the resume as a string, and use the string.IndexOf method to locate the position.

Or you could be more sophisticated, and store a word index list for the resume, and consult that for word matches.

But both of these depend on the format of the resume being "human" readable.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900