-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDifference-ways-to-load-partial-content-into-a-main-page.html
More file actions
57 lines (45 loc) · 2.11 KB
/
Difference-ways-to-load-partial-content-into-a-main-page.html
File metadata and controls
57 lines (45 loc) · 2.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>Difference ways to load partial content into a main page</title>
<meta name="twitter:title" property="og:title" content="Difference ways to load partial content into a main page">
<meta name="twitter:description" property="og:description">
<meta property="og:url" content="https://docsroot.github.io/Difference-ways-to-load-partial-content-into-a-main-page.html">
<meta property="og:type" content="website">
<meta property="og:site_name" content="DocsRoot">
<meta name="author" content="hu****hd@gmail.com" />
<meta name="creator" content="docsroot" />
<style type="text/css">
blockquote {
border-left: 5px solid green;
margin: 10px;
padding: 10px;
}
img {
max-width: 100%;
height: auto;
}
footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: #DDD;
text-align: center;
height: 22px;
line-height: 22px;
}
</style>
</head>
<body>
<!--Heading of the page-->
<h1>Difference ways to load partial content into a main page</h1>
<!--The body part: what you put into RTE-->
<p>When we have a "widget" that produces HTML already, there will have the need to show it into a panel of another page. I try with difference options but each has a result.</p><p>1/ Using pure HTML with <object> element</p><p>2/ Use ASP.NET MVC helper Html.RenderAction to render the widget action</p><p>3/ Use javascript to load the URL into a div</p>
<footer>
By <a href="http://docsroot.devcovery.com/Listing/ViewBy?author=1" target="_blank">hu****hd@gmail.com</a> at 2/20/2019 7:28:08 AM. <a href="https://docsroot.github.io/Difference-ways-to-load-partial-content-into-a-main-page.html" target="_blank">View online</a>. Built with ♥ by <a href="http://docsroot.devcovery.com" target="_blank">docsroot</a>
</footer>
</body>
</html>