473,395 Members | 1,761 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

Dynamic Menu's

I am looking at purchasing or creating a dynamic
navigational menu system that would be binded to SQL
server 2000 data. The users id is stored in the SQL
server and based on the id is what the navigational menu
would show.

I would perfer to gain the experieance of building it
myself but theres not much documentation out there on
that subject. If anyone has any please guide me to it.

Also, has anyone purchased a menu control that is driven
from SQL server 2000? If so, do you recommend it? What
is it?

Also, I am looking to have a menu with multiple
subcatagories.

Thanks
Nov 18 '05 #1
7 2198
Hi Brian,

Be sure to check out Scott Mitchell's free menu control which includes
source code.

You bind it to a datasource:

http://www.asp.net/ControlGallery/Co...910&tabindex=2
"brian" <bs******@lbrspec.com> wrote in message
news:1d*****************************@phx.gbl...
I am looking at purchasing or creating a dynamic
navigational menu system that would be binded to SQL
server 2000 data. The users id is stored in the SQL
server and based on the id is what the navigational menu
would show.

I would perfer to gain the experieance of building it
myself but theres not much documentation out there on
that subject. If anyone has any please guide me to it.

Also, has anyone purchased a menu control that is driven
from SQL server 2000? If so, do you recommend it? What
is it?

Also, I am looking to have a menu with multiple
subcatagories.

Thanks


Nov 18 '05 #2
I am looking at purchasing or creating a dynamic
navigational menu system that would be binded to SQL
server 2000 data. The users id is stored in the SQL
server and based on the id is what the navigational menu
would show.

I would perfer to gain the experieance of building it
myself but theres not much documentation out there on
that subject. If anyone has any please guide me to it.


..NET Nuke (http://www.dotnetnuke.com/) builds menus dynamically based on the
pages that you have created for the menu. It is multi-level with fly-out
child menus and icons. It's free (open-source) and it's actually pretty
sweet, although, it's built directly into the app, so you will have to do
some work to isolate it. The entire system is extremely modular, so it
shouldn't be too hard to do.

HTH,
Jeremy
Nov 18 '05 #3
I'm currently working with the UltraWebNavigator menuing system from
Infragistics
[http://www.infragistics.com/products...p?sec=0&cat=1].

I'm driving the entire content and structure from a SQL Server database
(although with ADO.NET the data source really doesn't matter), and currently
enable up to 5 levels (the control does not limit the number of levels you
can have).

It's not cheap, and there may be some concern with downlevel browser
support.

DK
"brian" <bs******@lbrspec.com> wrote in message
news:1d*****************************@phx.gbl...
I am looking at purchasing or creating a dynamic
navigational menu system that would be binded to SQL
server 2000 data. The users id is stored in the SQL
server and based on the id is what the navigational menu
would show.

I would perfer to gain the experieance of building it
myself but theres not much documentation out there on
that subject. If anyone has any please guide me to it.

Also, has anyone purchased a menu control that is driven
from SQL server 2000? If so, do you recommend it? What
is it?

Also, I am looking to have a menu with multiple
subcatagories.

Thanks

Nov 18 '05 #4
Ken Cox [Microsoft MVP] wrote:
Be sure to check out Scott Mitchell's free menu control which includes
source code.

You bind it to a datasource:

http://www.asp.net/ControlGallery/Co...910&tabindex=2


Ken, thanks for the plug. I just wanted to clarify one point - there is
(currently) no method in skmMenu that will bind results from a database
to the menu. There are two ways to specify the menu's structure:

(1) Bind it to an XML file
(2) Programmatically specify the menu's structure

So, to get it to mold to data in a database, you'd need to use option 2,
iterating through the database results and programmatically constructing
the menu.

As an aside, anyone who is interested can learn more about skmMenu at
the official Web site: http://www.skmMenu.com/

Thanks!

--

Scott Mitchell
mi******@4guysfromrolla.com
http://www.4GuysFromRolla.com
http://www.ASPFAQs.com
http://www.ASPMessageboard.com

* When you think ASP, think 4GuysFromRolla.com!
Nov 18 '05 #5

Scott-

When you say I could use option (2) Programmatically specify the menu's
structure am I Programmatically building an XML file and then binding to
it?

Could you please explain more! I couldn't find anything concerning this
on your website.

Thanks

It looks like you have a really good product.

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 18 '05 #6
Check out Infragistics controls. Lots of good stuff in there!

Charlie
"brian" <bs******@lbrspec.com> wrote in message
news:1d*****************************@phx.gbl...
I am looking at purchasing or creating a dynamic
navigational menu system that would be binded to SQL
server 2000 data. The users id is stored in the SQL
server and based on the id is what the navigational menu
would show.

I would perfer to gain the experieance of building it
myself but theres not much documentation out there on
that subject. If anyone has any please guide me to it.

Also, has anyone purchased a menu control that is driven
from SQL server 2000? If so, do you recommend it? What
is it?

Also, I am looking to have a menu with multiple
subcatagories.

Thanks

Nov 18 '05 #7
brian shannon wrote:
When you say I could use option (2) Programmatically specify the menu's
structure am I Programmatically building an XML file and then binding to
it?

Could you please explain more! I couldn't find anything concerning this
on your website.


Brian, I mean building up the menu using the SubItems property. Like so:

Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
'Put user code to initialize the page here
If (Page.IsPostBack = False) Then
Dim submenu1 As New skmMenu.MenuItem("<img
src=""menublip.gif"" align=""absmiddle"">Dynamic Item 1", "")

submenu1.SubItems.Add(New skmMenu.MenuItem("Sub Item 1",
"page1.html"))
submenu1.SubItems.AddSpacer(5, "")
submenu1.SubItems.Add(New skmMenu.MenuItem("Sub Item 2",
"page2.html"))

Dim submenu3 As New skmMenu.MenuItem("Sub Item 3 ->", "")
submenu3.SubItems.Add(New skmMenu.MenuItem("Sub Item 3 -
1", "page1.html"))
submenu3.SubItems.Add(New skmMenu.MenuItem("Sub Item 3 -
2", "page2.html"))

submenu1.SubItems.Add(submenu3)
submenu1.SubItems.Add(New skmMenu.MenuItem("Sub Item 4",
"page4.html"))
submenu1.SubItems.Add(New skmMenu.MenuItem("Sub Item 5",
"page5.html"))
submenu1.SubItems.Add(New skmMenu.MenuItem("Sub Item 6",
"page6.html"))
Menu1.Items.Add(submenu1)

...
End Sub

You can download some skmMenu examples, one of which includes building
the menu dynamically, from http://skmmenu.com/menu/Download/

Happy Programming!

--

Scott Mitchell
mi******@4guysfromrolla.com
http://www.4GuysFromRolla.com
http://www.ASPFAQs.com
http://www.ASPMessageboard.com

* When you think ASP, think 4GuysFromRolla.com!
Nov 18 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Macamba | last post by:
Hi all, I am currently developing a website for a voluntary organisation. It is my first step in website development. The dynamic menu I developed has some bugs, which I addressed in another...
4
by: Stromboli | last post by:
hi people, My problem is that I need to build a dynamic menu (preferably that works in all the browsers) that appears when I mouseover a certain link. The problem is that I have to declare...
1
by: Nathan Bloomfield | last post by:
Does anyone know if there is any documentation which relates to Access2k + ? or can anyone help adjust the code? I am having trouble converting the DAO references. TITLE :INF: How to...
1
by: biela | last post by:
Hi I'm from Poland and I have small question :). I'm looking for sample example how to create dynamic menu. Generaly my website will see like that ------------------------------------ 2...
2
by: vikram | last post by:
I have to design a page which contains a dynamic generated menu at left side.Menu will be generated once a user log in and will remain as it is for the rest of the user session. Problem is that...
19
by: mart2006 | last post by:
I've created a dynamic drop down menu that populates itself with data from a MySQL table. What I would like to do is create a non dynamic drop down menu that alters what is shown in the dynamic menu....
3
by: RahimAsif | last post by:
I am writing an application that requires the a portion of the main menu to be dynamic. The menu has file, panels, view files and help across the top. The view files sub menu needs to be...
0
by: benfly08 | last post by:
Hi, I used SWT to develop an windows application. In the application there is a dynamic created popup menu. The dynamic part is that i will pass a list of name to be a submenu of one menu item....
10
by: mart2006 | last post by:
Hi, I'm fairly new to PHP and I've created a dynamic drop down menu that populates itself with data from a MySQL table. What I would like to do is create a non dynamic drop down menu that alters...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.