hi guys,
I have a dynamically generated buttons which picks the images from the database ID.
However I want to
1. display the first five in a row, and then a line break </br> and arrange the next set. HOwever I cant seem to get that to work.
2. Am trying to add spaces between images
please help
thanks
Ehi
for (int i = 1; i < 5; i++)
{
eee = eee + 1;
image[i] = new ImageButton();
image[i].BorderWidth = 30; // Am trying to add spaces between images
image[i].Height = 100;
image[i].Width = 75;
image[i].AlternateText = x.ToString();
image[i].ImageUrl = "~/Images/wwwimages/" + x + ".png"; /// x is a dynamic db value
image[i].Visible ...
Go to the complete details ...