TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
onur baybek
NA
3
0
Breakpoint Problem
Aug 20 2010 8:57 AM
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 ?
Reply
Answers (
2
)
metakeyword, metadescription
FTP Problems