ASP.NET w Visual c# Math Logic Error?

Jeff H 7mmMag

New member
Can anyone see the logic error please? It should fill the array with numbers 1-100 and print them to the screen. Thanks

<body>
<%
int count = 0;
int numbers = new int[100];
while (count > 100)
{
numbers[count] = count;
++count;
}
while (count > 100)
{
Response.Write(numbers[count] + "<br />");

}
%>
</body>
</html>
What do I do to fix it, I am getting answers, I don't know what to do though, Thanks.
 
Back
Top