Include Applet in vb.net

liunx

Guest
Hai,

I had developed an application using ASP. In the application, Menu is created based on user privileges and displayed as an applet.

Now i am going to change the application into vb.net.

How can I include the applet?. Is there any other way to create a menu dynamically based on the privilege from database?

Better suggestions are appreciated.

Thanks,
Siva Rif you are using vb.net and asp.net, dont mess that with java applet. you can dinamicly create menu from .net directly. read msdn, boyYou can dynamically create a menu by just simply writing out the (x)html from the server. What kind of menu are you looking for? Maybe I can point you in the correct direction.

I would not go near an applet for something like your site's navigation because the applet is an objec thtat only graphical browsers will be able to support, and even then not all do. Plus why use an applet when it can be done more efficiently with markup.The menu is dynamically created based on the privileges given to the user.

For Example, the menu is like,

Employee
Project
Masters
Reports
Logout

These links are provided as an applet in left panel.
Every title may have several sublinks, For every sublinks, privilege has been defined to the user. By clicking the above links, user can see the links below the titles based on the priviles he had.

Hope this is clear.

Regards,
Siva RYou do not need an applet for that. You can go into the db, look for the users privleges, from that you populate a menu. This menu can even be a drop down menu if you like, that would hopefully use the css hover attribute. <!-- m --><a class="postlink" href="http://www.alistapart.com/articles/horizdropdowns/">http://www.alistapart.com/articles/horizdropdowns/</a><!-- m --> something like that would work nice. It would be so much easier to use and so much more accessible then using an applet.
 
Back
Top