Browse by Tags

Tagged Content List
  • Forum Post: Re: Drop Down List of Blog Members?

    Nope. But it should be fairly easy to setup. Arraylist blogs = Weblogs.GetWeblogs(); //returns a list of blogs //assumes a dropdown list named ddl ddl.DataSource = blogs; ddl.DataTextField = "Name"; ddl.DataValueField = "Url"; ddl.DataBind(); ddl.Items.Add(new ListItem("--Select a Blog--")); Then...
  • Forum Post: Link List on default blog skin

    Hi, Is there anyway in which a link list could be shown on the blog page, preferably on the default theme. Also any idea on how to show popular tags of posts on a blog site like whats done here http://weblogs.asp.net Would appreciate any advice, Thanks, Taz
  • Forum Post: Debugging the MetaBlog API

    Hi Guys, I was trying to configure a blog editor like zoundry (I tried a few others too w.bloggar, blogjet, postxing) I get the error "XmlRpc listblogs request failed: RpcPublishedError['blogger.getUsersBlogs' type:XMLRPC protocol error code -1 msg( http://...metablog.ashx )] This has been bugging...
  • Forum Post: Delete list items from SharePoint SPListItemCollection.

    Example: If you would like to delete item from SPListItemCollection by property name, you can do this by for loop with current statement below. public void DeleteLinkItems(String Name) { SPList userList = GetUsersSPList (); SPListItemCollection listItems = userList.Items; for...