Friday 1 April 2016

Basic Of C#

Do While Loop :-

coding :

 protected void Page_Load(object sender, EventArgs e)
    {
        int n = 1;
        do
        {
            Response.Write(n + "Welcome<br>");
            n++;
        }
        while (n <= 15);
        
    }

No comments:

Post a Comment

Part 20 consuming rest api in ionic

in this video, I will show you that how you can consume the rest API. in the previous video we have implemented the asp.net web API projec...