| Article: |
Building Web Parts, Part 1 | |
| Subject: | I can't see verbs | |
| Date: | 2006-05-24 15:48:03 | |
| From: | KHuang | |
|
I can't see the verbs (close and minimize) of the web parts on the page I created according to the demo.
|
||
Showing messages 1 through 3 of 3.
-
I can't see verbs
2006-08-14 02:16:50 Arcalis [View]
-
I can't see verbs
2007-08-26 08:43:34 Lepu [View]
I guess this has something to do with the fact that personalization should only work for identified users (it makes sense).
I had the same issue, then I created myself a new account in my website, I logged in and then I was able to see my webpart verbs.
-
I can't see verbs
2006-07-14 11:20:34 ShawnZ [View]
I have the same problem when I uploaded my website to our production server. It works fine on my local PC.



code goes like this , pl let us know if you have found solution.
<asp:webpartmanager runat="server" id="MyWebPartManager" />
<asp:LoginStatus ID="LoginStatus1" runat="server" />
<asp:webpartzone id="SideBarZone" runat="server" headertext="Sidebar" ToolTip="SideBarZone">
<CloseVerb ImageUrl="images/CloseVerb.jpg"
Enabled="True"
Text="Close"
Description="Closes the WebPart"
visible="True" />
<HelpVerb Text="View Help" />
<ExportVerb Text="Export WebPart Definition" />
<DeleteVerb Text ="Delete WebPart" />
<MinimizeVerb Description="Minimize the control" ImageUrl="~/Images/RestoreVerb.GIF" />
<RestoreVerb Description="Restore the control" />
<zonetemplate>
<rp:Reports AutoPostBack="True" id="Reports" runat="server" OnLoad="Reports_Load" />
</zonetemplate>
<PartStyle BorderStyle="Solid" BorderWidth="1px" />
<TitleBarVerbStyle BorderStyle="Groove" BorderWidth="2px" />