Trying to read a pdf file in modal popup on button click

Course Queries Syllabus Queries 3 years ago

4.28K 1 0 0 0

User submissions are the sole responsibility of contributors, with TuteeHUB disclaiming liability for accuracy, copyrights, or consequences of use; content is for informational purposes only and not professional advice.

Answers (1)

Post Answer
profilepic.png
manpreet Tuteehub forum best answer Best Answer 3 years ago

 

In my project the client should able to see the syllabus for a particular subject in modal popup on click on the subject name. The pdf file is in the folder called PDF in my project MVCApplication1.

Here is the code I have tried:

@{  
string path = "~/PDF/SIMS.pdf";
string b = HttpContext.Current.Request.MapPath(path);
}
@try
{
if (File.Exists(b))
{
<embed src=@path width="900" height="400"/>
}
else
{
NOT SETmarquee>
}
}
catch(Exception e)
{
Console.WriteLine(e.Message);
}

This is not working for me.
But if the change the src in  from @path to "~/PDF/SIMS.pdf" then it is working.

Is this the right way to do this, or is there any other way for this problem?

0 views
0 shares

No matter what stage you're at in your education or career, TuteeHUB will help you reach the next level that you're aiming for. Simply,Choose a subject/topic and get started in self-paced practice sessions to improve your knowledge and scores.

Similar Forum