Re: When I click on a save button on my custom dialog it opens up the same window

  •  03-06-2008, 7:25 PM

    Re: When I click on a save button on my custom dialog it opens up the same window

    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
View Complete Thread