Write an Article Write a Tutorial Add a Fast Code* *Fast Code might be any helpful code with brief comment
Stem Cells Blood Banks Insurances .Net Hosting Credit Cards PC Rental Business
Tutorials: ASP .NET C# .NET VB .NET Articles: ASP .NET C# .NET VB .NET Fast Code: ASP .NET C# .NET VB .NET
string[] images = new string[] { "/images/Backcolor.gif", "/images/Bold.gif", "/images/cut.gif" };
System.Random r = new Random(); string returningImage=images[r.Next(0,images.Length)];
string path = Request.ApplicationPath + GetRendomImage();
Image1.ImageUrl = path; Image1.AlternateText = path;
protected void Page_Load(object sender, EventArgs e) { string path = Request.ApplicationPath + GetRendomImage(); Image1.ImageUrl = path; Image1.AlternateText = path; } protected string GetRendomImage() { System.Random r = new Random(); string[] images = new string[] { "/images/Backcolor.gif", "/images/Bold.gif", "/images/cut.gif" }; return images[r.Next(0,images.Length)]; }
25/10/2008 01:28:00 UTC