关于html标签 textarea

第一次用,玩一下!
<!--<br /> <br /> Code highlighting produced by Actipro CodeHighlighter (freeware)<br /> http://www.CodeHighlighter.com/<br /> <br /> --> < body >
    
< textarea  rows ="6"  cols ="30" >
   
<%   
    
int  t = 1 ;
    
for ( int  i = 0 ;i < 4 ;i ++ )
    {
       
for ( int  j = 0 ;j <= i;j ++ )
          out.print(t);
       out.println();
         
    }
%>
 
    
</ textarea >

  
</ body >

输出:
1
11
111
1111

你可能感兴趣的:(html,J#)