Jan 25, 2006 #1 LV Programmer Nov 1, 2000 1,184 US Does anyone know how to get rid of a Web Part Title? If you just say Code: this.Title = String.Empty; the Web Part will still show title as Untitled [1]
Does anyone know how to get rid of a Web Part Title? If you just say Code: this.Title = String.Empty; the Web Part will still show title as Untitled [1]
Jan 25, 2006 1 #2 ca8msm Programmer May 9, 2002 11,327 GB I've not really used Web Parts but have you tried setting it to a space e.g. Code: this.Title = " "; Does that work? ____________________________________________________________ Need help finding an answer? Try the Search Facility or read FAQ222-2244 on how to get better results. Upvote 0 Downvote
I've not really used Web Parts but have you tried setting it to a space e.g. Code: this.Title = " "; Does that work? ____________________________________________________________ Need help finding an answer? Try the Search Facility or read FAQ222-2244 on how to get better results.
Jan 25, 2006 Thread starter #3 LV Programmer Nov 1, 2000 1,184 US ca8msm, thanks, that works, except now I need to figure out how to suppress the placeholder for title, since it still keeps the space. Upvote 0 Downvote
ca8msm, thanks, that works, except now I need to figure out how to suppress the placeholder for title, since it still keeps the space.
Jan 25, 2006 #4 ca8msm Programmer May 9, 2002 11,327 GB What does the generated HTML look like for that web part? ____________________________________________________________ Need help finding an answer? Try the Search Facility or read FAQ222-2244 on how to get better results. Upvote 0 Downvote
What does the generated HTML look like for that web part? ____________________________________________________________ Need help finding an answer? Try the Search Facility or read FAQ222-2244 on how to get better results.
Jan 25, 2006 Thread starter #5 LV Programmer Nov 1, 2000 1,184 US Yeah, I'm looking at it now, will probably try to hide it client side. Upvote 0 Downvote