Click here to Skip to main content
16,016,425 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am developing one job portal where Job Applicant submit their resume,
i am storing this resumes as their applicant ID File name in one resumes Folder


i need to develop search engine which which will search the keyword typed in textbox
through all files in resume folder and return me the file names which has that keyword in their files

so anyone suggest me how can i do this in my C# code........

Any suggestion?
Posted
Updated 13-Dec-12 18:36pm
v2

The smart way is what Amit mentioned above and the best way as far as now is to index and search using lucene
Introducing Lucene.Net[^]
 
Share this answer
 
Comments
AmitGajjar 14-Dec-12 1:18am    
i never used this library but will try ... 5+
Hi,

You need to read your uploaded document files and stored content in the database. when user type particular keyworkd and you found it, corresponding file link you need to display on the search result.

best luck
 
Share this answer
 
Comments
AmitGajjar 13-Dec-12 20:39pm    
Reason for downvote ?
kishanthakar 14-Dec-12 0:35am    
If i will store every resume in database in bytes format then database get heavily loaded ......... isn't there be anyway by which we can traverse through each document and compare the word which i am looking for?
AmitGajjar 14-Dec-12 0:37am    
i am not telling you to store bytes but read the text from the document and store only text along with document link. if you read all the documents then that may take more time then reading from the database.
bbirajdar 14-Dec-12 0:40am    
Amit is right... +5
AmitGajjar 14-Dec-12 0:41am    
Thank you

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