I have a horizantal menu that has 3 items.Home Solutions Contact DatabaseSoftwareTechnical SupportAs you can see when you hover over Solutions it displays 3 submenu items.Beneath this menu, I have a JavaScript Slide Show.The problem is when you hover over Solutions it displays only the first 2 submenu items, the 3rd one (Technical Support) is chopped off by the JavaScript Slide ShowI have tried this in IE & FireFox and the same problem occurs.Can anyone please assist me in why the JavaScript Slide Show makes the sub menu items dissappear?
I have an asp.net file with a 2 level menu. I changed the menu background to transparent. When I run the page in the Expression Development Server it works fine but I upload the file to [URL] hosting and the submenu items display with a white background. Is there a way to fix this and why does it behave differently in EDS and ASP.net from Godaddy? I also created my own IIS server and posted the page with the same results.
I have for example a ASP Menu control having a static (File) and dynamic (Open, New) menu such as :
[code]....
I am able to see this menu under VS 2008 under my development PC. But when I deploy the app to a IIS server, and run the app, the whole app appeared the same. Only the Menu has "File" for selection but the submenu items (Open and New) did not appear when the mouse cursor was moved over "File". Only the Outline of the dropdown box of the submenu appeared.
I have a problem with my visual studio 2008 for my ASP.NET application on one PC (HP with Windows XP). The Dynamic submenu items are not visible when mouse over a menu. The same application works fine on another PC. It worked fine on the same PC 4 months ago. In recent 4 months, my PC had some updates, like windows XP updates, Visual studio 2008 updates, flash update, adobe update, and iTunes update. After I noticed the problem, I had tried to uninstall the all updates except windows XP updates; and tried to uninstall Visual Studio 2008 completely; then re-install it again.
i have a menu, what i want is that when i click on parent item of menu then only subitem should display,mean i dont want to display subitem on mouseover. what should i do.Is there any property should i set or i have to write code for it .
I am using asp.net2.0 , C#. I am binding menu control with sitemap to display menus and submenues. Which also restrict access and display of menu or submenu based on user's roles. I want to know Is it Possible to show/ Hide submenu based on sql tables with existing sitemap method
i want to show the arrayliust items in the listbox, for that i had stored some data in array list, and now i want that if i gv any id which is in the array list its corresponding details are displayed in listbox. I had two fields ID, Name, and when i give id its corresponding name should be shown in list box.
I have a listbox and used the sqldatasource to load the items in the listbox. But if there are no items in the result then i need to hide the listbox and show one msg like "no items". I know to check the listbox is empty or not using "Items.Count " , but which event will i check this?
am a .NET developer with four years professional experience. In my free time I am looking at building a site that graphically displays relationships between objects, in this case, people. I don't want to spend any money on a web control as this is just for fun. Something that looks like this:
except with people (who know each other, or otherwise). I am having trouble starting this project out. I have the database designed with a People table (ID, Name) and a Relationships table (ID1, ID2), but don't know how to graphically display this information.
I have a databound dropdownlist hooked up to a table and the query has the returned items show up in order. I also have some default items that are _DataBound like so:
[Code]....
What I'd like to do is add some more items, but have these new items show up in order with the other items displayed from the query. How do I accomplish this?
I had used listbox control with multiple selection mode. I stored id with comma delimiter in database.
e.g.
1. List Item One. 2. List Item Two. 3. List Item Three. 4. List Item Four. 5. List Item Five. 6. List Item Six.
Suppose user select item 2, 4 & 6. So I will store it as a 2,4,6 in database. This will work fine.
Now in editing I have to shows selection-bar for item 2, item 4 & item 6. So I had typed below source.
string strData ="2,4,6" if(strData != null) { char[] separator = new char[] { ',' }; string[] strSplitArr = strData.Split(separator); int x = 0; for (x = 0; x < strSplitArr.Length; x++) { // lstWDef_PurchasesEdit.Items[x].Selected = true; lstWDef_PurchasesEdit.SelectedValue = strSplitArr[x].ToString(); } }
But with this statement I got only last item id as a selected item with selectionbar. In our example 2,4,6 only item whoseid is 5 got as a selected item.
if i use
for (x = 0; x < strSplitArr.Length; x++) { if (lstWDef_PurchasesEdit.Items[x].Value == strSplitArr[x]) { lstWDef_PurchasesEdit.Items[x].Selected = true; } }
if the selected items are serial like 2,3,4 then it is displaying correctly..
if items are 2,4,6 then it is not selecting the items of listbox properly.
Is anybody guide me how to make item 2, item 4, item 5 as a selected item ?
I have an xml repeater deployed on two different pages. On the "News" page, I'd like to show all the items (which works fine), but on the "Home" page I'd only like to display the three most recent items.The code I'm using is below.
I am placing a dropdown list in the footer of a DataGrid like this:
[Code]....
In my code behind file, in the myDDL_OnLoad event handler, I call to the database, populate a SqlDataReader, and set the DDL's datasource to that datareader. I define what data columns should be used for the DataValueField and DataTextField of the dropdownlist. Then I call the DropDownList's DataBind() method. Everything works without error. But, when the dropdownlist is displayed, it has blank lines in it.
By that, I mean if 8 records are loaded into the dropdownlist, it will expand to a size appropriate for 8 rows but, it will be empty. there is no text in it.
Has anyone seen this type of behavior before? This dropdownlist is in the footer of a dynamically loaded ajax update panel so, it is difficult to see the source code to see what values are in the html element rendered to represent the dropdown.
I am using a SiteMap data source boudn to a navigation control. I would like to also put this in the footer (sort of like the bottom of Yahoo! pages) where all items are expanded and static.
So my major heading would be across the top (horizontal) and the sub items would be indented vertically below and always expanded. Is there a way to do this? Check out the bottom of the BlackBerry DEVCON 2010 site for an example:[URL]
have table COLLECTIONS and table CLOTHES.As an example, when showing the items on Listview, collection HAWAII would be written on the top, and its texts and images on the itemTemplate.Then, collection WINTER and its texts and images on the itemTemplate.And so on.P.S: I´m connecting the Listview visually thru SQLDataSource, not programatically.How can i do it ? On the layout template using a JOIN on the SQL Statement ?
I get the error page.I managed to add one sub menu(example) but there is no way that I can add more. Everything looks ok but for some reason dosent work. That's the whole map:
I am working on a website at the moment, I am using .NET 4 and VB. My site is contained within a Master Page and all working OK. I am using an ASP:MENU control which is driven by a web.sitemap file and works a treat. I have had an idea of something I would like to know but I am struggling to get it going correctly (not sure if it is even possible) What I am after doing is having the main categories of my website across the top horizonally (this part is no problem) and the sub menu items going vertically but down the left side of the page such as:
Logo Here Menu Head 1 Menu Head 2 Menu Head 3 Sub Menu Head 1 Sub Menu Head 2 Sub Menu Head 3
Does anyone have any idea if such a thing is possible or not?
We are facing an issue related to positioning of submenu in IE7.The submenu is hiding or else its overlapping Main menu.We have tried with offset values in order to set the positioning of submenu and tried with various combinations also.But its not working.
I have a list box which is populated using a dictioanry. When I iterate throught the selected items using the following code, it always show only the first items as selected - even if the first item is not selected. Have you ever encountered this scenario? This problem occurs when I use dictionary for binding. On the other hand a generic list works fine.
On the home page as I on work, I have a dropdown list which act as a menu. But in Internet Explorer can not figure out how to display all text in my dropdown list How it looks in Internet Explorer
How it looks in firefox, chrome and opera Do you know how to do so that Internet Explorer also displays all the text in my dropdown list like in firefox and the other