怎么能把用户名:密码:这几个字变成白色的。(现在是黑色的)

来源:百度知道 编辑:UC知道 时间:2024/09/23 03:57:07
以下是代码:
'过程名:ShowUserLogin
'作 用:显示用户登录表单
'参 数:无
'=================================================
sub ShowUserLogin()
dim strLogin
If Session("UserName")="" Then
strLogin= "<table width='100%' border='0' cellspacing='0' cellpadding='0'>"
strLogin=strLogin & "<form action='UserLogin.asp' method='post' name='UserLogin' onSubmit='return CheckForm();'>"
strLogin=strLogin & "<tr><td height='25' align='right'>用户名:</td><td height='25'><input name='UserName' type='text' id='UserName' size='20' maxlength='18.5'></td></tr>"
strLogin=strLogin & "<tr><td height='25' align='right' >密  码:</td><td height='25'><i


strLogin=strLogin & "<tr><td height='25' align='right'>用户名:</td><td height='25'><input name='UserName' type='text' id='UserName' size='20' maxlength='18.5'></td></tr>"
strLogin=strLogin & "<tr><td height='25' align='right' >密 码:</td><td height='25'><input name='Password' type='password' id='Password' size='21' maxlength='20'></td></tr>"
改成
strLogin=strLogin & "<tr><td height='25' align='right' style='color:#FFFFFF'>用户名:</td><td height='25'><input name='UserName' type='text' id='UserName' size='20' maxlength='18.5'></td></tr>"
strLogin=strLogin & "<tr><td height='25' align='righ