Guest User

Untitled

a guest
May 9th, 2012
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.50 KB | None | 0 0
  1. Foreach (string thumb in Directory.GetFiles(@"C:\Users\simog1\Desktop\Portfolio-Leg\portfolio","*.png",SearchOption.AllDirectories))
  2.         {
  3.             string LargePic = thumb.Replace("t.png", ".jpg");
  4.  
  5.             litGallery.Text += "<li>"
  6.                             + "<a href=\"" + LargePic + "\" rel=\"lightbox[portret]\"border=\"0\">"
  7.                             + "<img src=\"" + thumb + "\" width=\"136\" height=\"119\" border=\"0\">"
  8.                             + "</a> </li>";
  9.  
  10.         }
Advertisement
Add Comment
Please, Sign In to add comment