網頁

標籤雲

2014年3月17日 星期一

ASP.NET 亂數 Random

亂數 Random
------------------------------------------------------------------------------------------------------------
 protected void Button1_Click(object sender, EventArgs e)
    {
        Random a = new Random(); //產生新的隨機a
        int x; //定義一個變數讓產生的亂數可以放進去
        x = a.Next(1, 11); //亂數範圍是1~10 
        Label1.Text = Convert.ToString(x); //轉換型別為字串
        //Label1.Text=x.ToString(); //或用這個方法傳換型別

    }
------------------------------------------------------------------------------------------------------------

沒有留言:

張貼留言