CodeVerge.Net Beta


   Explore    Item Entry    Members      Register  Login  
NEWSGROUP
.NET
Algorithms-Data Structures
Asp.Net
C Plus Plus
CSharp
Database
HTML
Javascript
Linq
Other
Regular Expressions
VB.Net
XML

Free Download:




Zone: > NEWSGROUP > Asp.Net Forum > general_asp.net.master_pages_themes_and_navigation_controls Tags:
Item Type: NewsGroup Date Entered: 2/23/2008 7:31:15 AM Date Modified: Subscribers: 0 Subscribe Alert
Rate It:
(NR, 0)
XPoints: N/A Replies: 7 Views: 26 Favorited: 0 Favorite
Can Reply:  No Members Can Edit: No Online: Yes
8 Items, 1 Pages 1 |< << Go >> >|
hanntd
Asp.Net User
Child menu was disabled2/23/2008 7:31:15 AM

0/0

Hi all,

I'm using wecontrol menu. It's run properly on my local machine, but when i upload to host server the child menu was disabled. I could not expand to the child menu.

Any body know this problem. Pls help me.

Web site for reference: www.hqsoft.com.vn (admin menu was disable)

Thanks a lot

Han

 

Amanda Wang - M
Asp.Net User
Re: Child menu was disabled2/25/2008 7:49:44 AM

0/0

Hi,

Let's make some clarification: do you use the sitemap for the menu control's datasource?

Please make sure the url property is not empty or null, else the relevent menuitem is disable.

Hope it helps.


Please remember to mark the replies as answers if they help and unmark them if they provide no help.


Yours sincerely,
Amanda Wang
Microsoft Online Community Support
hanntd
Asp.Net User
Re: Child menu was disabled2/25/2008 1:15:31 PM

0/0

Thanks for your help.

Yes, I used Sitemap as the data source for my menu control.

The issue only happen when I publish my website to server at hosting provider.

If host my web site by myself on my server using Dynamic IP my web site still running properly (http://hqsoft.no-ip.org/HQ/)

Thanks

Han

Amanda Wang - M
Asp.Net User
Re: Child menu was disabled2/26/2008 3:28:32 AM

0/0

Hi,

Compare the page source, the cause of the problem seemly is the path that you refer the resource file.

You can try to not verify the axd file in the IIS, make on of verify that file exists is unchecked in the add/edit application extension Mapping window.

Try to refer the below screen.

Hope it helps.

 


Please remember to mark the replies as answers if they help and unmark them if they provide no help.


Yours sincerely,
Amanda Wang
Microsoft Online Community Support
hanntd
Asp.Net User
Re: Child menu was disabled2/26/2008 3:55:04 AM

0/0

Here is the site map content:

<?xml version="1.0" encoding="utf-8" ?>
<siteMap xmlns="http://schemas.microsoft.com/AspNet/SiteMap-File-1.0" >
  <siteMapNode>
    <siteMapNode url="~/Default.aspx" title="Home" description="Home Page"/>
    <siteMapNode url="~/Product.aspx" title="Products" description="Our Products"/>
    <siteMapNode url="~/Clients.aspx" title="Clients" description="About Our Clients"/>
    <siteMapNode url="~/News.aspx" title="News" description="News About The Business"/>
    <siteMapNode url="~/About.aspx" title="About Us" description="Business Overview"/>
    <siteMapNode url="~/Contact.aspx" title="Contact" description="Contact Information"/>
    <siteMapNode url="~/Recruitment.aspx" title="Recruitment" description="Our Recruitment Announcement"/>
 <siteMapNode  title="Admin" description="Administration Page">
  <siteMapNode url="~/Admin/CreateAccount.aspx" title="Create Account" description="Create Account"/>
  <siteMapNode url="~/Admin/NewsList.aspx" title="News Maintenance" description="News Maintenance"/>
  <siteMapNode url="~/Admin/NewsCatList.aspx" title="News Category" description="News Category Maintenance"/>
  <siteMapNode url="~/Admin/ItemCatList.aspx" title="Product Category" description="Product Category Maintenance"/>
 </siteMapNode>
  </siteMapNode>
</siteMap>

and here is the content of master page that menu control located:

 

<%@ master language="VB" autoeventwireup="true" inherits="HQWeb.MasterPage" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">


<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <meta name="generator" content="Microsoft Visual Studio, see http://msdn.microsoft.com/vstudio/" />
    <meta name="Keywords" content="HQSoft" />
    <meta name="Description" content="About HQSoft" />
    <meta name="copyright" content="Copyright (c) 2007 Han Quang Software Co.,Ltd. All rights reserved." />
    <link href="App_Themes/css-print.css" rel="stylesheet" type="text/css" media="print" />
    <link rel="shortcut icon" href="Images/hq.ico" />
    <title>HQSoft</title>
</head>
<body>

    <form id="form1" runat="server">
  
        <asp:SiteMapDataSource ID="SiteMapDataSource1" runat="server" ShowStartingNode="false" />
        <div id="top-information">
            <div id="logo">
                <a href="Default.aspx">Han Quang Software Solution.</a></div>
            <div id="top-information-home">
                &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
                <asp:LoginView ID="LoginView1" runat="server">
                    <LoggedInTemplate>
                        Welcome back,
                        <asp:LoginName ID="LoginName1" runat="server" />
                        <br />
                        <br />
                        <asp:LoginStatus ID="LoginStatus1" runat="server" />
                        <br />
                        <br />
                        <a href="ChangePassword.aspx">Thay &#272;&#7893;i M&#7853;t Kh&#7849;u</a>
                    </LoggedInTemplate>
                    <AnonymousTemplate>
                        &nbsp; &nbsp; &nbsp;&nbsp; B&#7841;n ch&#432;a &#273;&#259;ng nh&#7853;p.<br>
                        <br>
                        <a href="Login.aspx">&#272;&#259;ng Nh&#7853;p</a><br>
                        <a href="Admin\CreateAccount.aspx">T&#7841;o T?i Kho&#7843;n</a>
                    </AnonymousTemplate>
                </asp:LoginView>
            </div>
        </div>
  
        <div id="nav-main">
                       <asp:Menu ID="Menu1" runat="server" DataSourceID="SiteMapDataSource1" Orientation="Horizontal"
                Width="604px" StaticSelectedStyle-CssClass="StaticSelectedStyle" >
                           <StaticSelectedStyle CssClass="StaticSelectedStyle" />
                           <DynamicMenuStyle BackColor="#3366FF" />
                       </asp:Menu>
            <div>
                       </div>
        </div>
      
        <asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server">
        </asp:ContentPlaceHolder>
     <!--


FOOTER

-->
        <div id="footer">
                     Copyright &copy; 2007 Han Quang Software Co., Ltd.
            <div>
                &nbsp;</div>
        </div>
        <div id="footer-sub">
            <asp:Menu ID="Menu2" runat="server" DataSourceID="SiteMapDataSource1" Orientation="Horizontal"
                Width="500px" MaximumDynamicDisplayLevels="0"/>
        </div>
 </form>
</body>

</html>

Thanks

Han

Amanda Wang - M
Asp.Net User
Re: Child menu was disabled2/26/2008 5:37:27 AM

0/0

Hi,

Compare with two pages source , the cause of the problem seemly is in IIS of refering the resource file.

You can try to not verify the axd file in the IIS, make on of verify that file exists is unchecked in the add/edit application extension Mapping window.

Try to refer the below screen.

Hope it helps.


Please remember to mark the replies as answers if they help and unmark them if they provide no help.


Yours sincerely,
Amanda Wang
Microsoft Online Community Support
hanntd
Asp.Net User
Re: Child menu was disabled2/26/2008 6:27:03 AM

0/0

wow, I tested on my server the issue exactly what you guide me. But I can't do like that on the server of hosting provider. :) Maybe I will ask them to support me solve this issue.

Thanks a lot for your help.

Han

epmoyer2
Asp.Net User
Re: Child menu was disabled3/19/2008 1:32:40 PM

0/0

Hello:

 I examined the souce code for the Default page, in both localhost and on the server. This amounted to 29 pages each of #10 pt print.

I discovered that the axd script was different between the two.

For example:

Localhost: axd?d'hGS9eUZKL0k . . .

Server: axd?d=YKZDKWslZPqq . . .

These were both large strings.

This caused me to believe that the problem was in this code difference.

I then redid the Master file, hoping this might solve my problem. It did not.

I attempted to find the Application Extension Mapping, including a search of the Internet, but I could not find instruction that would help me in VWD2008.

How can I get to the Application Extension Mapping window?

Ernest

 

8 Items, 1 Pages 1 |< << Go >> >|


Free Download:

Books:
The MEL Companion: Maya Scripting for 3D Artists Authors: David Stripinis, Pages: 468, Published: 2003
Handbook of Cognitive, Social, and Neuropsychological Aspects of Learning Disabilities: Volume 2 Authors: Stephen J. Ceci, Pages: 432, Published: 1986
Programming Microsoft Visual Basic 6.0: [master Object-oriented Programming Techniques for Rapid 32-bit Development] Authors: Francesco Balena, Pages: 1276, Published: 1999
Creating Applications with Mozilla: Using XUL, JavaScript, and CSS Authors: David Boswell, Ian Oeschger, Brian King, Eric Murphy, Pete Collins, Pages: 454, Published: 2002
Professional ASP.NET 2.0 Design: CSS, Themes, and Master Pages Authors: Jacob J. Sanford, Pages: 474, Published: 2007
The Concordance Database Manual Authors: M. Alan Haley, Pages: 368, Published: 2006
Housing and Disabled Children: The Art of the Possible Authors: Mark Bevan, Joseph Rowntree Foundation, Pages: 26, Published: 2002
Mastering Visual Basic.NET Authors: Evangelos Petroutsos, Pages: 1153, Published: 2002

Web:
[iPhone SDK] App with Menu for Disabled Child - Hackint0sh [iPhone SDK] App with Menu for Disabled Child iPhone Developer Exchange.
Menu for Simple Player for Disabled Child - Mac Forums Menu for Simple Player for Disabled Child iPod touch.
Caring for a disabled child : Directgov - Caring for someone Information for people looking after a disabled child or children. ... Direct payments for a disabled child can be made to people with parental ...
[#FB-13601] Project > Properties menu is disabled when an item in ... Select either the parent SDK Library Tree or one of the library file children 3. Pull down the Project menu Actual Results: Properties is disabled Expected ...
Re:SuperFish child menu item not displaying correctly - FireBoard ... When selecting a child menu item from the SuperFish menu, the menu doesn't stay 'active' in the ... The administrator has disabled public write access. ...
coding: utf-8 -*- # This file is part of emesene. # # Emesene is ... MenuBar() for child in menu: gtk_menubar.add(build(child)) menu.signal_connect(" enabled", _set_sensitive, gtk_menubar, True) menu.signal_connect("disabled", ...
Ocean City, Maryland Restaurants with Disabled Access Lunch, dinner, carryout cocktails, beer/wine, child’s menu disabled access. ... Discounted prices for children. Dinner, buffet, child’s menu, disabled ...
Expanding a menu when not on a child page | drupal.org Adding an item to a menu makes that item (and its URL) a child of that menu, no matter whether the item is enabled or disabled. ...
Ill and disabled children : Department of Health - Health care Skip main menu; Health care · Social care · Public health ... Every Child Matters: Aiming High for Disabled Children (opens new window) ...
Menu bar Only one child menu at each level of the menu tree is displayed "in place". ... If true, this menu item is disabled. If false or omitted, the menu item is ...

Videos:
myHotelVideo.com presents: Hotel Tossa Center in Tossa de Mar / Costa Brava / Spain More @ http://myhotelvideo.com/de/landingpage/youtube/resourceid/Mhv_Catalog_Offer::37783 Location: This hotel is located in the tourist centre of To...
myHotelVideo.com presents: Hotel Macdonald Ansty Hall in Coventry / England / United Kingdom More @ http://myhotelvideo.com/de/landingpage/youtube/resourceid/Mhv_Catalog_Offer::61229 Location: This charming country house enjoys a stunning loc...
myHotelVideo.com presents: Hotel Reco d'es Sol in San Antonio / Ibiza / Spain More @ http://myhotelvideo.com/de/landingpage/youtube/resourceid/Mhv_Catalog_Offer::2899 Location: This apartment complex enjoys a quiet location. Th...
myHotelVideo.com presents: Hotel Park Bremen in Bremen / Bremen / Germany More @ http://myhotelvideo.com/de/landingpage/youtube/resourceid/Mhv_Catalog_Offer::18766 Location: This charming hotel is surrounded by 200 hectares...
myHotelVideo.com presents: Hotel Palacio de Luces in Asturias / Asturias / Spain More @ http://myhotelvideo.com/de/landingpage/youtube/resourceid/Mhv_Catalog_Offer::85163 Location: Situated in the very heart of Asturias, between t...




Search This Site:










login from page other then main!!

dnn 3 rad editor provider?

dnn 3.13 stopped running

dnn 3.0.9 "an unhandled error has occurred."

creating a weighted array

dont render the page untill all stylesheets applied?

contest signup module?

wap rc1 - adding global resource

vwd express and paypal commerce kit

dal builder vs. dnn jungle templates + codesmith vs. mygeneration??

really simple question about my profile

help - module needed, any ideas ?

performance testing/metrics

access to the path "c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\intranet\77428409\26b4b9fc" is denied.

my version of the commerce site - nearly finished!

dinked my profiles - settingspropertynotfound: street

how to make the forward links for particular pop3 mailbox account?

win3k firewall configutation, how do i get it setup?

porting dnn database

dnn (1.0.10d) and cookies

 
All Times Are GMT