asp:menu trouble

  • Thread starter Thread starter Fuzzhead
  • Start date Start date
F

Fuzzhead

I am having troube getting my menu control to render properly on the
pordcution server. It works perfectly on my one system, but when I
uploaded it the dynamic part of the menu does not function.

I also had a problem with the default PopOut image, but when I changed
it to a custom one that problem was solved, so I think it might have
something to do with the same root cause.

Does anyone know how to fix this?

Thanks,

Russel.
 
My appologies. Here is the code:

<asp:Menu ID="Menu1" runat="server" DataSourceID="SiteMapDataSource1"
Orientation="Horizontal" StaticDisplayLevels="2"
Width="750px" DisappearAfter="300" DynamicHorizontalOffset="20"
DynamicPopOutImageUrl="~/images/template/menu_arrow.gif"
EnableTheming="False"
StaticPopOutImageUrl="~/images/template/menu_arrow.gif"
MaximumDynamicDisplayLevels="5" SkipLinkText="">
<StaticMenuItemStyle CssClass="StaticMenuRest" />
<DynamicHoverStyle CssClass="DynamicMenuOver" />
<StaticSelectedStyle CssClass="StaticMenuSelected" />
<DynamicSelectedStyle CssClass="DynamicMenuSelected" />
<DynamicMenuItemStyle CssClass="DynamicMenuRest" />
<StaticHoverStyle CssClass="StaticMenuOver" />
</asp:Menu>

Thanks,

Russ.
 
My appologies. Here is the code:

Presumably, the menu_arrow.gif image is actually on the production server in
the folder where the Menu control is expecting to find it...?
 
The menu_arrow.gif image is a file I added to fix the first problem I
encounted when the production server could not find the default image.
My fix worked for this. It's the dynamic script that asp.net generates
for the drop down portion seems not to work on the production server.

Thanks,

Russ.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top