I have a custom web control, property is set to use the
ImageUrlEditor:
private string imageOut;
[Editor("System.Web.UI.Design.ImageUrlEditor, System.Design", typeof
(UITypeEditor))]
public string ImageOut{
get {return imageOut;}
set {imageOut = value;}
}
This works fine, but stores the file as an absolute ref. Any way to
make this a relative ref?