Nope. But it should be fairly easy to setup.
Arraylist blogs = Weblogs.GetWeblogs(); //returns a list of blogs//assumes a dropdown list named ddlddl.DataSource = blogs;ddl.DataTextField = "Name";ddl.DataValueField = "Url";ddl.DataBind();ddl.Items.Add(new ListItem("--Select a Blog--"));Then add a javascript onchange event to the dropdownlist:onchange="if(this.selectedIndex > 0) window.location = this[this.selectedIndex].value;"
HTH,Scott
Follow Me On Twitter
Copyright© 2008 Telligent Systems Inc. All rights reserved CommunityServer.com • Telligent.com