Posted on: 8/23/2014 11:33:41 AM | Views : 350

I need a Little help with a projekt. a former coworker made this and it Works fine, but i need the image to be clickable link and make it display in full size in a pop up window. i am novice in C# and asp.net i could really use some help.
Maybe a link to the website could help? balder.ucn.dk/1011860/galleri.aspx
Asp.net Code
<a href="<%# Eval("path") %>"> <asp:label ID="albumContentlbl" runat="server" Text=""> </a>

C# Code
protected void albumbtn_Click(object sender, EventArgs e)   { string[] billeder = Directory.GetFiles(Server.MapPath("~/Uploads/" + albumDrop.SelectedValue)); for (int i = 0; i < billeder.Count(); i++) { string[] billede = billeder[i].Split('\\'); Image img = new Image(); img.Width ...

Go to the complete details ...