Да, см. класс UrlEditor .
По сути, вы объявите свою собственность следующим образом:
[EditorAttribute(typeof(System.Web.UI.Design.UrlEditor), typeof(UITypeEditor))]
public string YourProp
{
get
{
return (string)ViewState["YourProp"];
}
set
{
ViewState["YourProp"] = value;
}
}