Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I ran into a similar problem in the past. I believe it deals with having <code>&lt;% %&gt;</code> in the <code>&lt;head&gt;</code> on the master page, however I may be mistaken. Replace your master page with this and let me know if it fixes the issue. </p> <pre><code>&lt;html xmlns="http://www.w3.org/1999/xhtml"&gt; &lt;head runat="server"&gt; &lt;title&gt;&lt;/title&gt; &lt;script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"&gt;&lt;/script&gt; &lt;script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.21/jquery-ui.min.js"&gt;&lt;/script&gt; &lt;script type="text/javascript" src="~/Template/Scripts/jquery.fancybox-1.4.3.min.js"&gt; &lt;/script&gt; &lt;script type="text/javascript"&gt; $(document).ready(function () { $("#LoginLightBox").fancybox({ width: 300, height: 750, scrolling: "no" }); $("#RegistroLightbox").fancybox({ width: 300, height: 750, scrolling: "no" }); }); &lt;/script&gt; &lt;asp:ContentPlaceHolder ID="HeadContent" runat="server"&gt; &lt;/asp:ContentPlaceHolder&gt; &lt;/head&gt; &lt;body id="page1"&gt; &lt;form id="Form1" runat="server"&gt; &lt;asp:ScriptManager ID="ScriptManager" runat="server"&gt; &lt;/asp:ScriptManager&gt; &lt;div&gt; &lt;ul&gt; &lt;li style="display:inline"&gt;&lt;a class="labelsTipolinks" id="LoginLightBox" href="Login.aspx?iframe=true"&gt;Login&lt;/a&gt;&lt;/li&gt; &lt;li style="display:inline;color: #C53005;"&gt;|&lt;/li&gt; &lt;li style="display:inline"&gt;&lt;a class="labelsTipolinks" id="RegistroLightbox" href="RegistroUsuario.aspx?iframe=true"&gt;Registro&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;/div&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.
    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.
    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