Hi! Thank you! It works now, the only problem is that I have a listbox with image files from the upload folder and I have this code:
protected void lbxImages_SelectedIndexChanged(object sender, EventArgs e)
{
txtSelectedImage.Text = lbxImages.SelectedItem.ToString();
cmsImage.ImageUrl = txtSelectedImage.Text;
}
if I click on the listbox items it does not get displayed in the textbox, nor the image. And I have a button just sitting there for now under the textbox, if I click on that the textbox get the item that was highlighted in the listbox, eventhought the button has no click event. Thanks again