I have a panel placed inside a webpart which holds a chart . The title of the webpart zone is Untitled[0],Untitled[1]….There is no title tag in the panel control or web part . Any one know how to solve this .
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Try with this:
HeaderText="Product summary". This header is used to identify your web part when you are in edit, design mode or connect mode (this is not the title)<uc:ProductSummary title="Product summary title" runat="server" ID="productSummary" />. This represents aUserControlin this case, and this was added in theZoneTemplate, as you can see, you can pass atitle="..."to yourUserControleven when you do not have declared a property with that name, theWebPartthen uses that property to display the title… kinda trickyOutput