如何去掉链接下面的下划线
我在做网页的时候,只要加上链接,在浏览器里就出现下划线,但是我不想要下划线,我应该怎么去掉呢,请高手指点。我用的是Dreamweave Ultradev 4.0
我觉得应该修改的是这段代码,但是不知道怎么改(是动网文章的JS.asp页)
rs.movefirst
do while not rs.eof
topic=gotTopic(rs("title"),maxLen)
topic=replace(server.HTMLencode(topic)," "," ")
topic=replace(topic,"'"," ")
str=str+bullet
if showNclass then
str=str+"[<a href='"&path&"default.asp?classid="&rs("classid")&"&nclassid="&rs("nclassid")&"'>"&rs("nclass")&"</a>] "
end if
str=str+"<a href='"&Path&"list.asp?id="+Cstr(rs("articleid"))+"'target='_blank' title='["&rs("nclass")&"]"&replace(replace(server.HTMLencode(rs("title"))," "," "),"'"," ")&"') ><font color=#003298>"+Topic+"</font></a>"
str=str & "<font color="
str=str &"> </font><br><br>"
rs.moveNext
loop
end if
rs.close : conn.close
set rs=nothing : set conn=nothing
response.write "document.write ("&Chr(34)&str&Chr(34)&");"