Note that there are some explanatory texts on larger screens.

plurals
  1. POmaking my aspx (developed with html5 codes) as my master page for my web application
    primarykey
    data
    text
    <p>I have done a aspx file filled with my GUI, image button and image slide shows. I developed all these 3 functions by using HTML5, CSS and javascript. However, the html5 was completed in the aspx file format in visual studio 2012. I attempted to create a new master page in order to make my GUI standardized for all my other web form. I then copied the codes of my aspx file(filled with html5 codes) into the master page and this is the error I got.</p> <p>PS : I'm doing a web application using visual studio 2012 with html5, css and javascript </p> <p>Link : <a href="http://imgur.com/yfX6NaU" rel="nofollow">http://imgur.com/yfX6NaU</a></p> <p>HTML5 CODES ( in aspx file format ) </p> <pre><code>&lt;%@ Master Language="C#" AutoEventWireup="true" CodeBehind="GUI.master.cs" Inherits="MP.GUI" %&gt; &lt;!DOCTYPE html&gt; &lt;html xmlns="http://www.w3.org/1999/xhtml"&gt; &lt;head runat="server"&gt; &lt;title&gt;Police Website&lt;/title&gt; &lt;asp:ContentPlaceHolder ID="head" runat="server"&gt; &lt;/asp:ContentPlaceHolder&gt; &lt;script type="text/javascript"&gt; &lt;!--&gt; var image1 = new Image() image1.src = "image/s1.jpg" var image2 = new Image() image2.src = "image/s2.jpg" var image3 = new Image() image3.src = "image/s3.jpg" var image4 = new Image() image4.src = "image/s4.jpg" var image5 = new Image() image5.src = "image/s5.jpg" //--&gt; &lt;/script&gt; &lt;meta http-equiv="Content-Type" content="text/html; charset=utf-8"/&gt; &lt;link rel="stylesheet" href="css/style.css" type="text/css" /&gt; &lt;!--[if lt IE 8]&gt; &lt;script src ="http://ie7-js.googlecode.com/svn/version/2.1 (beta2)/IE8.js"&gt;&lt;/script&gt; &lt;![endif]--&gt; &lt;/head&gt; &lt;body&gt; &lt;form id="form1" runat="server"&gt; &lt;div&gt; &lt;asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server"&gt; &lt;/asp:ContentPlaceHolder&gt; &lt;/div&gt; &lt;ul id="Slideshow"&gt; &lt;img src="image/s1.jpg" name="slide" width="1215px" height="250px"&gt; &lt;script type="text/javascript"&gt; &lt;!-- var step = 1 function slideit() { document.images.slide.src = eval("image" + step + ".src") if (step &lt; 5) step++ else step = 1 setTimeout("slideit()", 2500) } slideit() //--&gt; &lt;/script&gt; &lt;/ul&gt; &lt;%-- &lt;input type="image" id="header" style="height:250px;width:1148px;" src="image/header.jpg" /&gt; --%&gt; &lt;input type="image" id="myimage" style="height:53px;width:200px;" src="image/logo.jpg" /&gt; &lt;ul id="nav"&gt; &lt;li&gt;&lt;a href="#"&gt;Home&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#"&gt;Login&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#"&gt;Report&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#"&gt;Recent cases&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#"&gt;About&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js" type="text/javascript" charset="utf-8"&gt;&lt;/script&gt; &lt;script src="http://jquery-ui.googlecode.com/svn/tags/latest/ui/jquery.effects.core.js" type="text/javascript"&gt;&lt;/script&gt; &lt;script type="text/javascript" src="js/scripts.js"&gt;&lt;/script&gt; &lt;/form&gt; &lt;/body&gt; &lt;/html&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload