设置它的style属性 中的 text-decoration设置为none
 text-decoration:none;

解决方案 »

  1.   

    修改工程中的Styles.css 文件
    A:visited {
    text-decoration: none;
    color: #333399;
    }

    A:active {
    text-decoration: none;
    color: #000000;
    }

    A:hover {
    text-decoration: none;
    color: #3333cc;
    }
    在頁面中引用Styles.css
    <HEAD>
    <title>User</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="Styles.css" rel="stylesheet"> '加上本句
    </HEAD>