**Bu koda nasıl tablo ekleyebilirim bu şekilde eklediğimde deyim gerekli hatası alıyorum
<html>
<head>
<title>Sayfa</title>
</head>
<body>
<table border="3">
<%
if not isempty ( Request. QueryString ("ad") ) Then
<tr>
<td>
ad = Request. QueryString ("ad")
</td>
</tr>
soyad = Request. QueryString ("soyad")
sinif = Request. QueryString ("Sinif")
numara = Request. QueryString ("Numara")
Response. Write + ad + " " + soyad + ""+Sinif+""+Numara
end if
%>
</table>
</body>
</html>