Contents of simplec.aspx:
<%@ Page Language="C#" %> <html> <head> </head> <body> <p> A Simple Loop Counter in ASP using C# </p> <p> <% int i; String outputstring=""; for (i=1;i<10;i++) { outputstring=outputstring + "<br>loop index i=" + i.ToString() ; } displayresult.InnerHtml=outputstring; Response.Write ("<p>This line is from a response.write"); %> <span id="displayresult" runat="server"></span> </p> </body> </html>
***** end of file *** printed: 25 lines on: 11/23/2009 6:04:11 AM