This is a C# test
This is a C# test
This is a C# test

The code

<script language="C#" runat=Server>
void test()
{
int a =0;
while (a< 3){
Response.Write("This is a C# test <br>");
a++ ;
}
}
</script>
<%
test();
%>