Link to home
Start Free TrialLog in
Avatar of danielolorenz
danielolorenz

asked on

How Do You Load a HTML File to a MVC View Page Help Dialogue?

How do you load an HTML file from a shared file directory to a MVC View Page help page?

Thanks,

Dan
Avatar of kaufmed
kaufmed
Flag of United States of America image

What do you mean by "help page"? Is this something specific to ASP.NET MVC, or are you using the term generically to refer to a view?
Avatar of danielolorenz
danielolorenz

ASKER

I am using a JQuery popup to display the Help Content.

Example:
$('#gun-permit-search-help').popover({
    html: true,
    content: '<h4>Gun Permit Search Main Help</h4>',
    title: 'Help <button id="gun-permit-help-close" type="button" class="close help-close-btn" aria-hidden="true">&times;</button>',
    placement: 'bottom',
    trigger: 'click'
});

Open in new window

I want to load a HTML into a HTML div tag within the popup?
The HTML Help needs to be loaded into a div tag from a HTML file on my C: drive.
...on my C: drive.
C: drive on the client or server?
On the client drive.
ASKER CERTIFIED SOLUTION
Avatar of kaufmed
kaufmed
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial