关于ASP的初级问题 ( 积分: 50 )

  • 主题发起人 主题发起人 vkbpl6012
  • 开始时间 开始时间
V

vkbpl6012

Unregistered / Unconfirmed
GUEST, unregistred user!
我刚用这东东, 我装了ISS6.0 可我运行下面的代码怎么那个字体的变量不起效果:
<%@ language=&quot;VBScript&quot;
runnat=&quot;server&quot;
%>
<html>
<head>
<title>This is my first Asp.net page</title>
</head>
<body>
<% for i=10 to 70 step 10 %>
<font style=color:&quot;red&quot;
size=<% =i %> Hello World ! </font><br>
<% next %>
<% Response.Write(&quot;Hello World again!&quot;) %>
</body>
</html>
 
我刚用这东东, 我装了ISS6.0 可我运行下面的代码怎么那个字体的变量不起效果:
<%@ language=&quot;VBScript&quot;
runnat=&quot;server&quot;
%>
<html>
<head>
<title>This is my first Asp.net page</title>
</head>
<body>
<% for i=10 to 70 step 10 %>
<font style=color:&quot;red&quot;
size=<% =i %> Hello World ! </font><br>
<% next %>
<% Response.Write(&quot;Hello World again!&quot;) %>
</body>
</html>
 
HTML语句有问题,size值个位数就行了,写到style中才是px单位
<font style=&quot;color:red&quot;
size=<% =i/10 %> >Hello World ! </font><br>
或者
<font style=&quot;color:red;font-size:<% =i %> &quot;> Hello World ! </font><br>
HTML、DHTML问题欢迎到
http://njsoft.w2.smsky.cn/BBS/
( http://est.51vip.com )
讨论。
 
我换成了下面的还是不行,是不是ASP方面的设置哪不对?
<%@ language=&quot;VBScript&quot;
runnat=&quot;server&quot;
%>
<html>
<head>
<title>This is my first Asp.net page</title>
</head>
<body>
<% for i=10 to 70 step 10 %>
<!-- <font style=color:&quot;red&quot;
size=<% =i %> Hello World ! </font><br> -->
<font style=&quot;color:red;font-size:<% =i %> &quot;> Hello World ! </font><br>
<% next %>
<% Response.Write(&quot;Hello World again!&quot;) %>
</body>
</html>
 
这样就可以了
<% @language=&quot;VBScript&quot;
%>
<% runnat=&quot;server&quot;
%>
<html>
<head>
<title>This is my first Asp.net page</title>
</head>
<body>
<% for i=10 to 70 step 10 %>
<!-- <font style=color:&quot;red&quot;
size=<% =i %> Hello World ! </font><br> -->
<font style=&quot;color:red;font-size:<% =i %> &quot;> Hello World ! </font><br>
<% next %>
<% Response.Write(&quot;Hello World again!&quot;) %>
</body>
</html>
 
多人接受答案了。
 
后退
顶部