手动在aspx文件的title下面加一行:
<link href="css/yourcss.css" type="text/css" rel="stylesheet">

解决方案 »

  1.   

    和上楼一下;
    在***.aspx页面文件
    <HEAD>
    <title>注册税务师管理中心-教材订购</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">
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
    <LINK href="CSS/stylemain.css" type="text/css" rel="stylesheet">
    </HEAD>
      

  2.   


    //显示AD
    function ShowFlashAD(url, width, height)
    {
        document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="' + width + '" height="' + height + '"><param name="movie" value="' + url + '" /><param name="allowScriptAccess" value="always" /><param name="quality" value="high" /><param name="wmode" value="transparent" /><embed src="' + url + '" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="' + width + '" height="' + height + '" allowScriptAccess="always" wmode="transparent"></embed></object>');
    }//验证评论信息
    function checkTalk()
    {
        //验证昵称
        var CheckNickName = false;
        var NickName = document.getElementById("NickTextBox");
        var NickNameTest = /[\s\~\!\@\^\*\(\)\`\=\|\\\{\}\[\]\:\"\;\'\<\>\?\,\/]/gi;
        if (NickName.value.search(NickNameTest) < 0 && NickName.value != "" ) {
    CheckNickName = true;
        }
        else {
            alert("昵称填写错误");
        }
        //验证评论内容
        var CheckPost = false;
    var PostText = document.getElementById("PostTextTextBox");
    var PostTest = /[\@\^\*\(\)\`\=\|\\\{\}\[\]\:\"\;\'\<\>\?\,\/]/gi;
    if(PostText.value == ""){
    alert("请填写评论内容");
    }else{
        if(PostText.value.search(PostTest) < 0){
        CheckPost = true;
        }else{
        alert("签名内容中含有特殊字符");
        }
    }
        if( CheckNickName == true && CheckPost == true)
        {
            return true;
        }
        else
        {
            return false;
        }
    }