Link to home
Start Free TrialLog in
Avatar of avikatz16
avikatz16

asked on

Help with CSS and my .aspx page

Hello,
I bearly know a thing about the code of css styling and I have a problem integrating it to my .aspx page.
I had it working at one point but now it doesn't work.
My css file is named global.css and its code is as follow:

a:link {
      color: #006699;
      text-decoration: underline;

}
a:hover {
      color: #000000;
      text-decoration: none;
}
a:visited {
      color: #006699;
      text-decoration: underline;

}
a:active {
      color: #000000;
}

========================
Now, in my .aspx code, right under all the <meta tags i have located the following line:
            <LINK href="C:\Documents and Settings\Administrator\Desktop\global.css" type="text/css" rel="stylesheet">


I'm using VS.NET 2002 with .NET Framework 1.1.
what do i need to modify/add/change?

thanks in advance
Avatar of Type25
Type25

it needs to point to where you CSS file is.

I would suggest you copy the CSS file (global.css) into the same directory as your aspx page and then add this line instead:

<LINK href="global.css" type="text/css" rel="stylesheet">
Avatar of avikatz16

ASKER

I already tried that and it doen't work that's why I tried moving it to the desktop.
Moving it to the desktop doesn't make any sense.

if it's in the same directory it *will* work.

If that's the only style you want to use, you could just use it like this:

<HEAD>
            <title>Complete Report</title>
            <meta content="Microsoft Visual Studio .NET 7.1" name="GENERATOR">
            <meta content="C#" name="CODE_LANGUAGE">
            <meta content="JavaScript" name="vs_defaultClientScript">
            <meta content="http://schemas.microsoft.com/intellisense/ie5" name="vs_targetSchema">
            <LINK href="media/tabsStyle.css" type="text/css" rel="stylesheet">
            <LINK href="media/pop_style.css" type="text/css" rel="stylesheet">
            <LINK href="media/samsStyles.css" type="text/css" rel="stylesheet">
  </HEAD>
<style>
a:link {
     color: #006699;
     text-decoration: underline;

}
a:hover {
     color: #000000;
     text-decoration: none;
}
a:visited {
     color: #006699;
     text-decoration: underline;

}
a:active {
     color: #000000;
}
</style>

...rest of your page...
this is my code, i tried doing one or the other, or both, still no go

<HTML>
      <HEAD>
            <title>Taft College Student Records</title>
            <meta content="Microsoft Visual Studio.NET 7.0" name="GENERATOR">
            <meta content="Visual Basic 7.0" name="CODE_LANGUAGE">
            <meta content="JavaScript" name="vs_defaultClientScript">
            <meta content="http://schemas.microsoft.com/intellisense/ie5" name="vs_targetSchema">
            <LINK href="global.css" type="text/css" rel="stylesheet">

<style>
a:link {
     color: #006699;
     text-decoration: underline;

}
a:hover {
     color: #000000;
     text-decoration: none;
}
a:visited {
     color: #006699;
     text-decoration: underline;

}
a:active {
     color: #000000;
}
</style>
You're missing a </HEAD>  tag
i'm not missing it i just didn't post it in the messege
Paste your entire aspx page (the html)
it;s a mess
i raised points to 500


<%@ Page Language="vb" AutoEventWireup="false" Codebehind="srecords.aspx.vb" Inherits="taftcollege_web1.srecords"%>
<%@ Register TagPrefix="cc1" Namespace="skmMenu" Assembly="skmMenu" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
      <HEAD>
            <title>Taft College Student Records</title>
            <meta content="Microsoft Visual Studio.NET 7.0" name="GENERATOR">
            <meta content="Visual Basic 7.0" name="CODE_LANGUAGE">
            <meta content="JavaScript" name="vs_defaultClientScript">
            <meta content="http://schemas.microsoft.com/intellisense/ie5" name="vs_targetSchema">
            <link href="global.css" type="text/css" rel="stylesheet">
            <script language="JavaScript">

<!--//
var url="index.aspx";
function new_window(url,iWidth,iHeight) {

link = window.open(url,"newWindow","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=400,height=500,left=140,top=50");

}
//-->
            </script>
            <script language="javascript">
            
            ///////
            // If user puts the mouse over an item...
      function mousedOverMenu(elem, parent, displayedVertically)
   {
   closeSubMenus(elem);

   // Display child menu if needed
   var childID = elem.id + "-subMenu";
   if (document.getElementById(childID) != null)
   {
      // make the child menu visible and specify that
// its position is specified in absolute coordinates
      document.getElementById(childID).style.display = 'block';
      document.getElementById(childID).style.position = 'absolute';

      if (displayedVertically) {
         // Set the child menu's left and top attributes
// according to the menu's offsets

      // Get offsets for a vertical menu
         document.getElementById(childID).style.left =
           getAscendingLefts(parent) + parent.offsetWidth;
         document.getElementById(childID).style.top =
           getAscendingTops(elem);
      }
      else
      {
         // Set the child menu's left and top attributes
// according to the menu's offsets

      // Get offsets for a vertical menu
         document.getElementById(childID).style.left =
           getAscendingLefts(elem);
         document.getElementById(childID).style.top =
           getAscendingTops(parent) + parent.offsetHeight;
      }
   }
}

function closeSubMenus(parent)
{
   // Hide **all** lower-ordered submenus
   for (var i = 0; i < subMenuIDs.length; i++)
      if (subMenuIDs[i].length > parent.id.length)
         document.getElementById(subMenuIDs[i]).style.display = 'none';
}
            </script>
      </HEAD>
      <body dir="ltr" bgColor="lightgrey" leftMargin="0" topMargin="0" MS_POSITIONING="GridLayout">
            <form id="Form1" name="header" method="post" runat="server">
                  &nbsp;
                  <table id="Table5" height="595" cellSpacing="1" cellPadding="1" width="99%" bgColor="#000000" border="0">
                        <TBODY>
                              <tr>
                                    <td vAlign="top" bgColor="#ffffff">
                                          <table id="Table6" height="595" cellSpacing="1" cellPadding="1" width="99%" bgColor="#000000" border="0">
                                                <TBODY>
                                                      <tr>
                                                            <td vAlign="top" bgColor="#ffffff">
                                                                  <table id="Table7" cellSpacing="0" cellPadding="0" width="100%" bgColor="#000000" border="0">
                                                                        <tr>
                                                                              <td bgColor="#333333"><IMG alt="" src="file:///C:\Inetpub\wwwroot\taftcollege_web1\pics\taftcollege.jpg"></td>
                                                                        </tr>
                                                                        <tr>
                                                                              <td style="FONT-WEIGHT: bold; FONT-SIZE: xx-small; FONT-FAMILY: Verdana" align="middle" bgColor="dimgray" height="19">
                                                                                    <div align="left">&nbsp;</div>
                                                                              </td>
                                                                        </tr>
                                                                  </table>
                                                                  <table id="Table8" cellSpacing="1" cellPadding="1" width="100%" bgColor="#000000" border="0">
                                                                        <tr>
                                                                              <td vAlign="top" align="middle" width="18%" bgColor="#666666" height="477"><IMG alt="" src="file:///C:\Inetpub\wwwroot\taftcollege_web1\pics\nav.jpg">
                                                                                    <cc1:menu id="Menu1" runat="server" Height="11px" BorderWidth="1px" BorderStyle="Solid" BorderColor="Black" BackColor="DimGray" ForeColor="LightGray" Font-Bold="True" Font-Size="X-Small" Font-Names="Verdana" Width="179px">
                                                                                          <UnselectedMenuItemStyle BorderWidth="1px" BorderStyle="Solid" BorderColor="DarkGray" BackColor="#000040"></UnselectedMenuItemStyle>
                                                                                          <SelectedMenuItemStyle BorderWidth="1px" ForeColor="White" BorderStyle="Solid" BorderColor="Transparent" BackColor="Black"></SelectedMenuItemStyle>
                                                                                    </cc1:menu></td>
                                                                              <td vAlign="top" align="middle" width="65%" bgColor="#ffffff">
                                                                                    <TABLE id="Table3" style="WIDTH: 573px; HEIGHT: 350px" cellSpacing="1" cellPadding="1" width="573" border="0" runat="server">
                                                                                          <TR>
                                                                                                <TD style="WIDTH: 362px" vAlign="top" align="middle"><BR>
                                                                                                      <TABLE id="Table1" style="WIDTH: 346px; HEIGHT: 271px" cellSpacing="0" cellPadding="0" width="346" align="center" border="0">
                                                                                                            <TR>
                                                                                                                  <TD style="WIDTH: 182px"><FONT color="#000000"><STRONG><FONT style="BACKGROUND-COLOR: lightgrey" face="Verdana, Arial, Helvetica, sans-serif" size="2">&nbsp;Current
                                                                                                                                          Standing&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</FONT></STRONG></FONT></TD>
                                                                                                                  <TD style="WIDTH: 167px"><STRONG><FONT style="BACKGROUND-COLOR: lightgrey" face="Verdana, Arial, Helvetica, sans-serif" color="#000000" size="2"><STRONG><FONT style="BACKGROUND-COLOR: lightgrey" face="Verdana, Arial, Helvetica, sans-serif" color="#000000" size="2">&nbsp;For
                                                                                                                                                Students&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</FONT></STRONG></FONT></STRONG></TD>
                                                                                                            </TR>
                                                                                                            <TR>
                                                                                                                  <TD style="WIDTH: 182px; HEIGHT: 8px">&nbsp; <FONT face="Verdana, Arial, Helvetica, sans-serif" size="2">
                                                                                                                              - <A id="A1" href="none.html" runat="server">Unofficial Transcript</A></FONT></TD>
                                                                                                                  <TD style="WIDTH: 167px; HEIGHT: 8px"><FONT style="FONT-WEIGHT: normal" face="Verdana, Arial, Helvetica, sans-serif" size="2"><FONT face="Verdana, Arial, Helvetica, sans-serif" size="2">&nbsp;-
                                                                                                                                    <A href="none.html">Student Handbook</A></FONT></FONT></TD>
                                                                                                            </TR>
                                                                                                            <TR>
                                                                                                                  <TD style="WIDTH: 182px; HEIGHT: 18px">&nbsp; <FONT face="Verdana, Arial, Helvetica, sans-serif" size="2">
                                                                                                                              - <A href="none.html">Current Schedule</A></FONT></TD>
                                                                                                                  <TD style="WIDTH: 167px; HEIGHT: 18px"><FONT style="FONT-WEIGHT: normal" face="Verdana, Arial, Helvetica, sans-serif" size="2"><FONT face="Verdana, Arial, Helvetica, sans-serif" size="2">&nbsp;-
                                                                                                                                    <A href="none.html">Finals Schedule</A></FONT></FONT></TD>
                                                                                                            </TR>
                                                                                                            <TR>
                                                                                                                  <TD style="WIDTH: 182px; HEIGHT: 15px">&nbsp; <FONT face="Verdana, Arial, Helvetica, sans-serif" size="2">
                                                                                                                              - <A href="none.html">Grade Report</A></FONT></TD>
                                                                                                                  <TD style="WIDTH: 167px; HEIGHT: 15px"><FONT style="FONT-WEIGHT: normal" face="Verdana, Arial, Helvetica, sans-serif" size="2"><FONT face="Verdana, Arial, Helvetica, sans-serif" color="#000000" size="2"><FONT size="1"><FONT style="FONT-WEIGHT: normal" face="Verdana, Arial, Helvetica, sans-serif" size="2"><FONT style="FONT-WEIGHT: normal" face="Verdana, Arial, Helvetica, sans-serif" size="2"><FONT face="Verdana, Arial, Helvetica, sans-serif" size="2">&nbsp;-
                                                                                                                                                            <A href="none.html">Parking Permit</A></FONT></FONT></FONT></FONT></FONT></FONT></TD>
                                                                                                            </TR>
                                                                                                            <TR>
                                                                                                                  <TD style="WIDTH: 182px; HEIGHT: 2px">&nbsp; <FONT face="Verdana, Arial, Helvetica, sans-serif" size="2">
                                                                                                                              - <A href="none.html">GPA Calculator</A></FONT></TD>
                                                                                                                  <TD style="WIDTH: 167px; HEIGHT: 2px"><FONT style="FONT-WEIGHT: normal" face="Verdana, Arial, Helvetica, sans-serif" size="2"><FONT face="Verdana, Arial, Helvetica, sans-serif" color="#000000" size="2"><FONT size="1"><FONT style="FONT-WEIGHT: normal" face="Verdana, Arial, Helvetica, sans-serif" size="2"><FONT face="Verdana, Arial, Helvetica, sans-serif" color="#000000" size="2"><FONT size="1"><FONT style="FONT-WEIGHT: normal" face="Verdana, Arial, Helvetica, sans-serif" size="2"><FONT face="Verdana, Arial, Helvetica, sans-serif" size="2">&nbsp;-
                                                                                                                                                                        <A href="none.html">Housing</A></FONT></FONT></FONT></FONT></FONT></FONT></FONT></FONT></TD>
                                                                                                            </TR>
                                                                                                            <TR>
                                                                                                                  <TD style="WIDTH: 182px; HEIGHT: 13px" vAlign="bottom"><FONT face="Verdana, Arial, Helvetica, sans-serif" color="#000000" size="2"><STRONG style="BACKGROUND-COLOR: lightgrey">&nbsp;Resources&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</STRONG></FONT></TD>
                                                                                                                  <TD style="WIDTH: 167px; HEIGHT: 13px" vAlign="top"><FONT face="Verdana, Arial, Helvetica, sans-serif" size="2"><FONT size="1"><FONT style="FONT-WEIGHT: normal" face="Verdana, Arial, Helvetica, sans-serif" size="2"><FONT face="Verdana, Arial, Helvetica, sans-serif" size="2"><FONT size="1"><FONT style="FONT-WEIGHT: normal" face="Verdana, Arial, Helvetica, sans-serif" size="2"><FONT style="FONT-WEIGHT: normal" face="Verdana, Arial, Helvetica, sans-serif" size="2"><FONT face="Verdana, Arial, Helvetica, sans-serif" color="#000000" size="2"><FONT size="1"><FONT style="FONT-WEIGHT: normal" face="Verdana, Arial, Helvetica, sans-serif" size="2"><FONT id="FONT1" face="Verdana, Arial, Helvetica, sans-serif" size="2">&nbsp;-
                                                                                                                                                                                          <A id="A2" href="none.html">Ready For Graduation</A></FONT><BR>
                                                                                                                                                                                    &nbsp;&nbsp; </FONT><A href="none.html"></A></FONT></FONT></FONT>
                                                                                                                                                      </FONT></FONT></FONT></FONT></FONT></FONT>
                                                                                                                  </TD>
                                                                                                            </TR>
                                                                                                            <TR>
                                                                                                                  <TD style="WIDTH: 182px; HEIGHT: 21px"><FONT face="Verdana, Arial, Helvetica, sans-serif" size="2">&nbsp;-
                                                                                                                              <A href="none.html">Degrees &amp; Certificates</A></FONT></TD>
                                                                                                                  <TD style="WIDTH: 167px; HEIGHT: 21px" vAlign="bottom"><FONT face="Verdana, Arial, Helvetica, sans-serif" size="2"><FONT size="1"><FONT style="FONT-WEIGHT: normal" face="Verdana, Arial, Helvetica, sans-serif" size="2"><FONT face="Verdana, Arial, Helvetica, sans-serif" size="2"><FONT size="1"><FONT style="FONT-WEIGHT: normal" face="Verdana, Arial, Helvetica, sans-serif" size="2"><FONT face="Verdana, Arial, Helvetica, sans-serif" color="#000000" size="2"><STRONG style="BACKGROUND-COLOR: lightgrey">&nbsp;Get
                                                                                                                                                                        Help&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                                                                                                                                                                  </STRONG></FONT></FONT></FONT></FONT></FONT></FONT></FONT>
                                                                                                                  </TD>
                                                                                                            </TR>
                                                                                                            <TR>
                                                                                                                  <TD style="WIDTH: 182px; HEIGHT: 19px"><FONT face="Verdana, Arial, Helvetica, sans-serif" size="2">&nbsp;-
                                                                                                                              <A href="none.html">Prerequisite Check</A></FONT></TD>
                                                                                                                  <TD style="WIDTH: 167px; HEIGHT: 19px" vAlign="bottom"><FONT face="Verdana, Arial, Helvetica, sans-serif" size="2"><FONT size="1"><FONT style="FONT-WEIGHT: normal" face="Verdana, Arial, Helvetica, sans-serif" size="2"><FONT face="Verdana, Arial, Helvetica, sans-serif" size="2"><FONT size="1"><FONT style="FONT-WEIGHT: normal" face="Verdana, Arial, Helvetica, sans-serif" size="2"><FONT face="Verdana, Arial, Helvetica, sans-serif" size="2">&nbsp;-
                                                                                                                                                                  <A href="none.html">On Campus Tutoring</A></FONT></FONT></FONT></FONT></FONT></FONT></FONT></TD>
                                                                                                            </TR>
                                                                                                            <TR>
                                                                                                                  <TD style="WIDTH: 182px; HEIGHT: 10px"><FONT face="Verdana, Arial, Helvetica, sans-serif" size="2"><FONT face="Verdana, Arial, Helvetica, sans-serif" size="2">&nbsp;-
                                                                                                                                    <A href="none.html">Assessment Testing</A></FONT> <A href="none.html"></A></FONT>
                                                                                                                  </TD>
                                                                                                                  <TD style="WIDTH: 167px; HEIGHT: 10px" vAlign="top">&nbsp;&nbsp;&nbsp;
                                                                                                                  </TD>
                                                                                                            <TR>
                                                                                                                  <TD style="WIDTH: 182px; HEIGHT: 12px"><FONT face="Verdana, Arial, Helvetica, sans-serif" size="2"><FONT face="Verdana, Arial, Helvetica, sans-serif" size="2">&nbsp;-
                                                                                                                                    <A href="none.html">Student Budget</A></FONT> <A href="none.html"></A></FONT>
                                                                                                                  </TD>
                                                                                                                  <TD style="WIDTH: 167px; HEIGHT: 12px"><FONT face="Verdana, Arial, Helvetica, sans-serif" size="2"><FONT size="1"><A href="none.html"></A></FONT></FONT></TD>
                                                                                                            </TR>
                                                                                                            <TR>
                                                                                                                  <TD style="WIDTH: 182px; HEIGHT: 12px"><FONT face="Verdana, Arial, Helvetica, sans-serif" size="2"><A href="none.html"></A></FONT></TD>
                                                                                                                  <TD id="Td2" style="FONT-SIZE: x-small; WIDTH: 167px; FONT-FAMILY: verdana; HEIGHT: 12px" align="middle"></TD>
                                                                                                            </TR>
                                                                                                            <TR>
                                                                                                                  <TD style="WIDTH: 182px">&nbsp;</TD>
                                                                                                                  <TD style="WIDTH: 167px">&nbsp;&nbsp;</TD>
                                                                                                            </TR>
                                                                                                            <TR>
                                                                                                                  <TD style="WIDTH: 182px">&nbsp;</TD>
                                                                                                                  <TD style="WIDTH: 167px">&nbsp;</TD>
                                                                                                            </TR>
                                                                                                            <TR>
                                                                                                                  <TD style="WIDTH: 182px">&nbsp;</TD>
                                                                                                                  <TD style="WIDTH: 167px">&nbsp;</TD>
                                                                                                            </TR>
                                                                                                      </TABLE>
                                                                                                </TD>
                                                                                                <TD vAlign="top" align="left"><BR>
                                                                                                      <STRONG><FONT style="BACKGROUND-COLOR: lightgrey" face="Verdana, Arial, Helvetica, sans-serif" color="#000000" size="2">
                                                                                                                  &nbsp; Personal Information&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;<BR>
                                                                                                                  <TABLE id="Table4" style="WIDTH: 193px; HEIGHT: 162px" cellSpacing="0" cellPadding="0" width="193" bgColor="white" border="0">
                                                                                                                        <TR>
                                                                                                                              <TD><FONT style="FONT-WEIGHT: normal" face="Verdana, Arial, Helvetica, sans-serif" size="2">*Name:&nbsp;
                                                                                                                                          <asp:label id="lblName" runat="server" Font-Bold="True" Font-Size="XX-Small" Font-Names="Verdana" Width="59px">lblName</asp:label></FONT></TD>
                                                                                                                        </TR>
                                                                                                                        <TR>
                                                                                                                              <TD><FONT style="FONT-WEIGHT: normal" face="Verdana, Arial, Helvetica, sans-serif" size="2">*Major:
                                                                                                                                          <asp:label id="lblMajor" runat="server" Font-Bold="True" Font-Size="XX-Small" Font-Names="Verdana" Width="101px">lblMajor</asp:label></FONT></TD>
                                                                                                                        </TR>
                                                                                                                        <TR>
                                                                                                                              <TD style="HEIGHT: 31px" vAlign="top"><asp:hyperlink id="lnkMajor" runat="server" Font-Size="XX-Small" Font-Names="Verdana" NavigateUrl="srecords.aspx">Change your Major</asp:hyperlink></TD>
                                                                                                                        </TR>
                                                                                                                        <TR>
                                                                                                                              <TD><FONT style="FONT-WEIGHT: normal" face="Verdana, Arial, Helvetica, sans-serif" size="2"><FONT face="Verdana, Arial, Helvetica, sans-serif" color="#000000" size="2"><FONT size="1"><FONT style="FONT-WEIGHT: normal" face="Verdana, Arial, Helvetica, sans-serif" size="2"><FONT style="FONT-WEIGHT: normal" face="Verdana, Arial, Helvetica, sans-serif" size="2">*Phone
                                                                                                                                                                  Number:&nbsp;
                                                                                                                                                                  <asp:label id="lblPhone" runat="server" Font-Bold="True" Font-Size="XX-Small" Font-Names="Verdana" Width="70px">lblPhone</asp:label></FONT></FONT></FONT></FONT></FONT></TD>
                                                                                                                        </TR>
                                                                                                                        <TR>
                                                                                                                              <TD style="HEIGHT: 25px" vAlign="top"><asp:hyperlink id="lnkPhone" runat="server" Font-Size="XX-Small" Font-Names="Verdana">Change Phone Number</asp:hyperlink></TD>
                                                                                                                        </TR>
                                                                                                                        <TR>
                                                                                                                              <TD><FONT style="FONT-WEIGHT: normal" face="Verdana, Arial, Helvetica, sans-serif" size="2"><FONT face="Verdana, Arial, Helvetica, sans-serif" color="#000000" size="2"><FONT size="1"><FONT style="FONT-WEIGHT: normal" face="Verdana, Arial, Helvetica, sans-serif" size="2"><FONT face="Verdana, Arial, Helvetica, sans-serif" color="#000000" size="2"><FONT size="1"><FONT style="FONT-WEIGHT: normal" face="Verdana, Arial, Helvetica, sans-serif" size="2">*Password:&nbsp;
                                                                                                                                                                              <asp:label id="lblPIN" runat="server" Font-Bold="True" Font-Size="XX-Small" Font-Names="Verdana" Width="88px">lblPIN</asp:label></FONT></FONT></FONT></FONT></FONT></FONT></FONT></TD>
                                                                                                                        </TR>
                                                                                                                        <TR>
                                                                                                                              <TD style="HEIGHT: 36px" vAlign="top"><asp:hyperlink id="lnkPIN" runat="server" Font-Size="XX-Small" Font-Names="Verdana" Width="155px">Change your PIN (Personal Identification Number)</asp:hyperlink></TD>
                                                                                                                        </TR>
                                                                                                                        <TR>
                                                                                                                              <TD><FONT style="FONT-WEIGHT: normal" face="Verdana, Arial, Helvetica, sans-serif" size="2"><FONT face="Verdana, Arial, Helvetica, sans-serif" color="#000000" size="2"><FONT size="1"><FONT style="FONT-WEIGHT: normal" face="Verdana, Arial, Helvetica, sans-serif" size="2"><FONT face="Verdana, Arial, Helvetica, sans-serif" color="#000000" size="2"><FONT size="1"><FONT style="FONT-WEIGHT: normal" face="Verdana, Arial, Helvetica, sans-serif" size="2">*Email
                                                                                                                                                                              Address:&nbsp;</FONT></FONT></FONT></FONT></FONT></FONT></FONT></TD>
                                                                                                                        </TR>
                                                                                                                        <TR>
                                                                                                                              <TD style="HEIGHT: 38px" vAlign="top"><asp:label id="lblEmail" runat="server" Font-Bold="True" Font-Size="XX-Small" Font-Names="Verdana" Width="180px">lblEmail</asp:label><BR>
                                                                                                                                    <asp:hyperlink id="lnkEmail" runat="server" Font-Size="XX-Small" Font-Names="Verdana">Change eMail Address</asp:hyperlink></TD>
                                                                                                                        </TR>
                                                                                                                        <TR>
                                                                                                                              <TD><FONT style="FONT-WEIGHT: normal" face="Verdana, Arial, Helvetica, sans-serif" size="2"><FONT face="Verdana, Arial, Helvetica, sans-serif" color="#000000" size="2"><FONT size="1"><FONT style="FONT-WEIGHT: normal" face="Verdana, Arial, Helvetica, sans-serif" size="2"><FONT face="Verdana, Arial, Helvetica, sans-serif" color="#000000" size="2"><FONT size="1"><FONT style="FONT-WEIGHT: normal" face="Verdana, Arial, Helvetica, sans-serif" size="2">*Home
                                                                                                                                                                              Address:&nbsp;</FONT></FONT></FONT></FONT></FONT></FONT></FONT></TD>
                                                                                                                        </TR>
                                                                                                                        <TR>
                                                                                                                              <TD vAlign="top"><asp:label id="lblAddress" runat="server" Font-Bold="True" Font-Size="XX-Small" Font-Names="Verdana" Width="180px">lblAddress</asp:label><BR>
                                                                                                                                    <asp:label id="lblCityStateZip" runat="server" Font-Bold="True" Font-Size="XX-Small" Font-Names="Verdana" Width="180px">lblCityStateZip</asp:label><BR>
                                                                                                                                    <asp:hyperlink id="lnkAddress" runat="server" Font-Size="XX-Small" Font-Names="Verdana">Change Address</asp:hyperlink></TD>
                                                                                                                        </TR>
                                                                                                                  </TABLE>
                                                                                                                  <BR>
                                                                                                                  <BR>
                                                                                                            </FONT></STRONG>
                                                                                                </TD>
                                                                                          </TR>
                                                                                    </TABLE>
                                                                                    <BR>
                                                                                    <BR>
                                                                              </td>
                                                                              <td vAlign="top" align="middle" width="17%" bgColor="#ffffff">&nbsp;</td>
                                                                        </tr>
                                                                  </table>
                                                                  <br>
                                                                  <br>
                                                                  <br>
            </form>
            </TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
      </body>
</HTML>
Copy and paste this into Notepad and run it in IE

<HTML>
     <HEAD>
          <title>Taft College Student Records</title>
          <meta content="Microsoft Visual Studio.NET 7.0" name="GENERATOR">
          <meta content="Visual Basic 7.0" name="CODE_LANGUAGE">
          <meta content="JavaScript" name="vs_defaultClientScript">
          <meta content="http://schemas.microsoft.com/intellisense/ie5" name="vs_targetSchema">
          <LINK href="global.css" type="text/css" rel="stylesheet">
</HEAD>
<BODY>
<style>
a:link {
     color: #006699;
     text-decoration: underline;

}
a:hover {
     color: #000000;
     text-decoration: none;
}
a:visited {
     color: #006699;
     text-decoration: underline;

}
a:active {
     color: #000000;
}
</style>
</BODY>

<form>

  <a href=''>Click here</a>

</form>
Just a tip but don't use <FONT> tag.  Should be using CSS for that.

You can learn simple CSS in a morning. Really is easy and will make that lot look a lot cleaner.
ASKER CERTIFIED SOLUTION
Avatar of Type25
Type25

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
thanks