I'm building a webpage using c# and html5 ,
the problem that i have is that when i enter the browser , it ask if i want to download data offline storage but when i check the size it give 0kb.
MasterPage.master:
- Code: Select all
<%@ Master Language="C#" AutoEventWireup="true" CodeFile="MasterPage.master.cs" Inherits="MasterPage" %>
<!DOCTYPE HTML >
<!--Notice about Manifest-->
<html manifest="offline.appcache">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>::TelePaty::</title>
<link href="css/desktop.css" rel="stylesheet" type="text/css">
<link href="css/citrus_mq.css" rel="stylesheet" type="text/css">
<!--[if lte IE 8]>
<script type="text/javascript" src="javascript/html5.js"></script>
<![endif]-->
<!--[if IE 6]>
<script src="javascript/belatedPNG.js"></script>
<script>
DD_belatedPNG.fix('*');
</script>
<![endif]-->
<link rel="shortcut icon" href="images/logo.ico" />
<!-- Start Telepaty.com HEAD section -->
<link rel="stylesheet" type="text/css" href="engine1/style.css"/>
<style type="text/css">a#vlb{display:none}</style>
<script type="text/javascript" src="engine1/jquery.js"></script>
<script type="text/javascript" src="engine1/wowslider.js"></script>
<!-- End Telepaty.com HEAD section -->
</head>
<body>
<div id="container">
<header id="logo">
<h1>TELEPATY</h1>
<h2>Technological revolution</h2>
<!-- Start Telepaty.com BODY section -->
<div class="flash">
<div id="wowslider-container1">
<div class="ws_images">
<span><img src="images/flash2.png" alt="flash2" title="flash2" id="wows0"/></span>
<span><img src="images/flash1.png" alt="flash1" title="flash1" id="wows1"/></span>
</div>
<div class="ws_bullets">
<div>
<a href="#wows0" title="flash2">1</a>
<a href="#wows1" title="flash1">2</a>
</div>
</div>
</div>
</div>
<script type="text/javascript" src="engine1/script.js"></script>
<!-- End Telepaty.com BODY section -->
<nav>
<ul>
<li><a href="default.aspx">Home</a></li>
<li><a href="about.aspx">About Us</a></li>
<li><a href="members.aspx">Members</a></li>
<li><a href="contact.aspx">Contact Us</a></li>
</ul>
</nav>
</header>
<div id="maincontent">
<asp:ContentPlaceHolder id="MainContent" runat="server">
</asp:ContentPlaceHolder>
<%--<section class="pod"><a href="#" class="block">
<h1>Partners</h1>
</a>
<figure class="podContent"><img src="images/partners.jpg" height="180" alt="Partners"></figure>
</section>
<section class="pod"><a href="#" class="block">
<h1>Testimonial</h1>
</a>
<figure class="podContent"><img src="images/testimonials.jpg" height="180" alt="Cafe interior"></figure>
</section>
<section class="pod"><a href="#" class="block">
<h1>References</h1>
</a>
<figure class="podContent"><img src="images/References.jpg" height="180" alt="References"></figure>
</section>--%>
</div>
<div class="clear"></div>
</div>
<!--need to change size for both divs or section it-->
<!--<div id="myCanvas"><img src="images/footer3.png" width="100%"></div>
<div id="footer"><img src="images/footer2.png"></div>-->
<!--Start of first foot-->
<div id="foot">
<div id="foottext" >
<a href="default.aspx">Home</a> | <a href="about.aspx">About Us</a> | <a href="members.aspx">Members</a> | <a href="contact.aspx">Contact Us</a> | <a href="partners.aspx">Partners</a> | <a href="testimonial.aspx">Testimonial</a> | <a href="references.aspx">References</a><div style="float:right;" class="logofoot"><img src="images/logofooter.png"></div></div>
</div>
<!--End-->
<!--Start of the copyright foot-->
<div id="copyright">
<div class="copyright">
Copyright 2012 © Telepaty Holding. All rights reserved.
<br>
<font class="telepaty">Design : <a href="http://www.telepaty.com">Telepaty.com</a></font>
</div>
</div>
<!--End-->
</div>
</div>
</body>
</html>
offline.appcache:
- Code: Select all
CACHE MANIFEST
# Created on 2 February 2012
CACHE:
MasterPage.master
Default.aspx
about.aspx
contact.aspx
# Standard Script Libraries
javascript/belatedPNG.js
javascript/html5.js
Scripts/jquery.tmpl.min.js
engine1/wowslider.js
engine1/script.js
engine1/jquery.js
engine1/wowslider.js
# Content (CSS & images)
css/citrus_mq.css
css/desktop.css
css/phone.css
css/tablet.css
css/test.css
engine1/style.css
engine1/arrows.png
engine1/bullet.png
engine1/triangle.png
engine1/arrows.png
images/backgroundsite.jpg
images/flash.png
images/flash1.png
images/testimonials.jpg
images/sml_logo.png
images/slogan.png
images/References.jpg
images/partners.jpg
images/Operating-the-Global-Business-Candy.jpg
images/med_logo.png
images/med_hero.jpg
images/lrg_logo.png
images/lrg_hero.jpg
images/logofooter.png
images/logo.png
images/Logo.ico
images/logo.gif
images/h22.gif
images/footer3.png
images/footer2.png
images/footer1.png
images/flash3-1.png
images/flash2.png
NETWORK:
MasterPage.master
default.aspx
about.aspx
contact.aspx
FALLBACK:
MasterPage.master
default.aspx
about.aspx
contact.aspx
and the website test is : wt.telepaty.com
so any help please.
Thank In Advance.
Regards
Nassim Beiruty.