Posted on: 10/17/2014 4:58:34 PM | Views : 375

I may have the most simple question ever but I struggle for 3 days and I just can't insert an image on my login page.
I have the login.aspx page in the wwwroot folder where I also have the img folder containg the Logo.png image
This is my login page:
<%@ Page Language="VB" AutoEventWireup="True" CodeFile="Login.aspx.vb" Inherits="_Login" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title>E&Y Login</title> <link href="styles/StyleSheet.css" rel="stylesheet" type="text/css" /> </head> <body> <form id="Login" method="post" runat="server"> <div> <asp:Label ID="DomainLabel" runat="server">Domain:</asp:Label> <asp:TextBox ID="t ...

Go to the complete details ...