Hi,
i work about web site with asp.net
i have some problems. my code :
<body>
<h1>3D Ödeme Sayfasi</h1>
<table border="1" style="display:none">
<tr>
<td><b>Parametre Ismi:</b></td>
<td><b>Parametre Degeri:</b></td>
</tr>
<%
IEnumerator e = Request.Form.GetEnumerator();
while (e.MoveNext())
{
String xkey = (String)e.Current;
String xval = Request.Form.Get(xkey);
Response.Write("<tr><td>" +xkey +"</td><td>"+ xval+"</td></tr>");
}
%>
</table>
.....
i want to put breakpoints in dark green area. How can i do this ?