for my project i have to create resume builder so the thing is i want to know to how to deal with msword in asp.net C# can any1 please tell me how to create resume in asp.net and save in msword(.doc) format
What I would do is create TextAreas and textboxes for the content to fill in and then refer to this article to get the procedure to output an HTML screen to Word.
It's not feasible to directly open the Word document inside the browser. If you render the document to browser it will be opened using MS Word. One option could be to first convert the document pages to images and then preview those images on the webpage.
abhiram_m
Member
122 Points
67 Posts
resume builder
Feb 09, 2012 01:04 PM|LINK
hi guyz
for my project i have to create resume builder so the thing is i want to know to how to deal with msword in asp.net C# can any1 please tell me how to create resume in asp.net and save in msword(.doc) format
bbcompent1
All-Star
33062 Points
8516 Posts
Moderator
Re: resume builder
Feb 09, 2012 01:21 PM|LINK
What I would do is create TextAreas and textboxes for the content to fill in and then refer to this article to get the procedure to output an HTML screen to Word.
http://www.dotnetfunda.com/articles/article9.aspx
abhiram_m
Member
122 Points
67 Posts
Re: resume builder
Feb 09, 2012 01:39 PM|LINK
thanks it helps a lot
by the way how to view the .doc files(msword) in asp.net so user can view his resume in asp.net
bbcompent1
All-Star
33062 Points
8516 Posts
Moderator
Re: resume builder
Feb 09, 2012 02:15 PM|LINK
This article should get you going in the right direction.
http://www.codeproject.com/Articles/3959/Microsoft-Word-Documents-from-ASP-NET
abhiram_m
Member
122 Points
67 Posts
Re: resume builder
Feb 09, 2012 02:29 PM|LINK
this article does not show us how to view the msword in asp.net..
</div>bbcompent1
All-Star
33062 Points
8516 Posts
Moderator
Re: resume builder
Feb 09, 2012 02:42 PM|LINK
Ok, try this one. http://forums.asp.net/t/1146150.aspx/1
abhiram_m
Member
122 Points
67 Posts
Re: resume builder
Feb 10, 2012 08:48 AM|LINK
even this does not seems to help.... i want to open msword file within the browser ...not using msword
shahzad.lati...
Member
82 Points
21 Posts
Re: resume builder
Feb 10, 2012 11:46 AM|LINK
It's not feasible to directly open the Word document inside the browser. If you render the document to browser it will be opened using MS Word. One option could be to first convert the document pages to images and then preview those images on the webpage.