Click here to Skip to main content
16,020,974 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
hello every one.
I want to make a page with file upload where a user can upload his CV and when he clicks the next button, all the informations from the CV is fetched and it is displayed on the different text boxes.
e.g the name of the candidate from CV should to display on name field,
the current job,experiences and many other informations should to be populated on the suitable text boxes...

I dont have any idea, on how to make it with c#....
Please help me out,its urgent.....
thanks in advance....
Posted
Comments
William Winner 28-Jun-10 13:22pm    
Reason for my vote of 1
If it was urgent and you didn't know how to do it, you shouldn't have agreed to it.

If it was urgent and you just waited too long, then it's your own fault.

Also, this is a QUICK answers forum. Giving an answer to this would not be quick.
Sandeep Mewara 28-Jun-10 14:14pm    
You had no idea. Ok. Now tell us, what ground work you have done in order to start?
i.ahmad86 29-Jun-10 0:20am    
Ya i know, but i have to make it..pls help...
Dylan Morley 29-Jun-10 6:34am    
If you have to make it, urgentz, then urgently learn some development skills.

Use a FileUpload Control[^] to upload a file to the server.
The next step would be to read the file. A simple Google search will give you lots of links[^].
Here, you need to implement some logic to get the required details.
If the CV has fixed format, it won't be very difficult.

So read the details and assign it to corresponding textboxes.

And lastly, about the urgent thing, I hope you won't use that again.
 
Share this answer
 
Comments
i.ahmad86 29-Jun-10 8:14am    
thats what i want na.. how to make it???
Ankur\m/ 29-Jun-10 8:33am    
I am sorry but I can't write code for you. Wait.. may be I can. But then everything comes for a price.
Hi
You cannot read the information from CV and display the same in textboxes (name, exp. etc), because

1. File format can be different (doc,docx, rtf)
2. Name can be appear with name prefix like "Name : I. Ahmed" or without "I. Ahmed"

You can only do the same if the file follow a specific template. If it is a word file then use Office Automation to read the file or if it is a docx file then use OpenXML SDK to read the content.
 
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