<html> <head> <title>測試頁面</title> </head> <body> 學生列表:<br> <table border="1"> <tr> <th>序號</th> <th>學號</th> <th>姓名</th> <th>年齡</th> <th>家庭住址</th> </tr> <#list stuList as stu> <tr> <td>${stu_index}</td> <td>${stu.id}</td> <td>${stu.name}</td> <td>${stu.age}</td> <td>${stu.address}</td> </tr> </#list> </table> </body> </html>