请各位帮帮忙,,   谢谢了,有了结果马上给分

解决方案 »

  1.   

    Random r = new Random();
    Int32 x = r.MoveNext(999,9999);
      

  2.   

    int RSeed=10000 ----指定随机种子
    Random rm=new Random(RSeed);
    int x=rm.Nest()
      

  3.   

    int RSeed=1000 ----指定随机种子
    Random rm=new Random(RSeed);
    int x=rm.Next()
      

  4.   

    Sorry!
    int x; 
    int RUp=9999; 
    int RDown=1000; 
    Random rm=new Random(RSeed);
    x=ro.Next(RDown,RUp); 
      

  5.   

    private void Page_Load(object sender, System.EventArgs e)
    {
    //产生随机数
    Random ran = new Random();
    int intRandom = ran.Next(10001,99999);
    //将随机数(验证字串)写入Session
    Session["Number_YN"] = intRandom;
    //字体名
    string strFontName = "Arial";
    //字体大小
    int intFontSize = 9;
    //图像宽
    int intWidth = 40;
    //图像长
    int intHeight = 15;
    //背景颜色
    Color bgColor = Color.Empty;
    //前景颜色
    Color foreColor = Color.White;
    //产生字体
    Font forFont = new Font(strFontName,intFontSize);
    //生成图片
    Bitmap newBitmap = new Bitmap(intWidth,intHeight,PixelFormat.Format32bppArgb);
    Graphics g = Graphics.FromImage(newBitmap);
    //定义一个四方形框与字片一样大小
    Rectangle newRect = new Rectangle(0,0,intWidth,intHeight);
    //涂上背景色
    g.FillRectangle(new SolidBrush(bgColor),newRect);
    //写字
    g.DrawString(intRandom.ToString(),forFont,new SolidBrush(foreColor),2,2);
    MemoryStream mStream = new MemoryStream();
    //存入MemoryStream
    newBitmap.Save(mStream,ImageFormat.Gif);
    g.Dispose();
    newBitmap.Dispose();
    //发送
    Response.ClearContent();
    Response.ContentType = "image/GIF";
    Response.BinaryWrite(mStream.ToArray());
    Response.End();
      

  6.   

    Random rm=new Random(RSeed);
    int x=rm.next(1000,9999);