我无法编写这个asp代码

时间:2017-04-03 10:52:20

标签: asp.net loops html-table

我有这个C.A.T.我应该使用asp.net回答几个问题。 我最近发布了一个尚无答案的here

这个当前版本需要使用for循环创建一个包含4列和5行的表。我拍了一个问题的屏幕截图并加入了它。

question

到目前为止我管理的代码是:

<html>
    <body>
    <%
    'dim i
    'for i=0 to 24
    'Response.write(i &"<br/>")
    'next

        'this is some new code


         %>
        <table border="1">
            <%
        for i=0 to 24

        %>
        <tr>
            <td><% response.write(i) %></td>        
        </tr>    

        <%

        next
    %>
    </table>
    </body>
    </html>

有人请帮助。

1 个答案:

答案 0 :(得分:0)

所需的两个循环的示例代码:

For row As Integer = 0 To 4
    For column As Integer = 0 To 4
        Console.Write(String.Format("r{0}c{1} ", row, column))
    Next
    Console.WriteLine
Next

您仍然必须(1)将其集成到您的ASP代码中(提示:替换Console.Write / .WriteLine)和(2)从rowcolumn转到您需要的号码