35 lines
1.4 KiB
HTML
35 lines
1.4 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Image</title>
|
|
|
|
</head>
|
|
<body>
|
|
|
|
<h2>Image Tag Helper Test</h2>
|
|
<!-- Plain image tag -->
|
|
<img src="/images/red.png" alt="Red block" title="<the title>">
|
|
|
|
<!-- Plain image tag with file version -->
|
|
<img src="/images/red.png?v=W2F5D366_nQ2fQqUk3URdgWy2ZekXjHzHJaY5yaiOOk" alt="Red versioned" title="Red versioned" />
|
|
|
|
<!-- Plain image tag with file version set to false -->
|
|
<img src="/images/red.png" alt="Red explicitly not versioned" title="Red versioned">
|
|
|
|
<!-- Plain image tag with absolute path and file version -->
|
|
<img src="http://contoso.com/hello/world" alt="Absolute path versioned">
|
|
|
|
<!-- Plain image tag with file version and path to file that does not exist -->
|
|
<img src="/images/fake.png" alt="Path to non existing file" />
|
|
|
|
<!-- Plain image tag with file version and path containing query string -->
|
|
<img src="/images/red.png?abc=def&v=W2F5D366_nQ2fQqUk3URdgWy2ZekXjHzHJaY5yaiOOk" alt="Path with query string">
|
|
|
|
<!-- Plain image tag with file version and path containing fragment -->
|
|
<img src="/images/red.png?v=W2F5D366_nQ2fQqUk3URdgWy2ZekXjHzHJaY5yaiOOk#abc" alt="Path with query string" />
|
|
|
|
<!-- Plain image tag with file version and path linking to some action -->
|
|
<img src="/controller/action" alt="Path linking to some action">
|
|
</body>
|
|
</html> |