Milonic provide full featured pull down web menus for some of the worlds largest companies
click here to see what it can do for you

Download Milonic DHTML Menu
Buy Milonic DHTML Menu

Back To Start Of Archive
Taken From The Forum: Archived Topics for the old Version 3.0 JavaScript Menu
Forum Topic: Click to view post
Last Updated: Wednesday July 18 2012 - 06:07:42

Need beta testers for my .NET control version of the menu


Poster: misc __at__ speedcandy.com
Dated: Saturday April 6 2002 - 2:21:58 BST

I've gotten several emails regarding the custom .NET server controls I wrote for the Milonic Menu since I first bragged about the idea, but I've been waiting for this new version to be released before I set this thing free to the public.

So as of today I have a working beta version of the controls that work with the latest release of the menu. If you would like to beta test this puppy, email ME at misc __at__ speedcandy.com and I'll put you on the list. It's a long way from where I want it to end up, but it works perfectly so far!

Also to Andy, would you mind hosting a page on your site for the controls? I'll send you all the content you'll need including a complete how-to with screenshots. I could host it myself, but I think it really belongs on your site.

And for those .NET junkies out there, please help me express to Andy how incredibly amazing the idea of using server controls to implement the menu is! Oh, and a taste test for you as well.......

private void Page_Load(object sender, System.EventArgs e)
{
// Put user code to initialize the page here
MMStyle style = new MMStyle();
MMenuItem menuitem = new MMenuItem();

menu.ScriptLocation = "mmenu.js";
menu.Effect = "Fade(duration=0.2);Alpha(style=0,opacity=88);Shadow(color='#777777', Direction=135, Strength=5)";

style.StyleName = "style1";
style.MouseOffFontColor = "navy";
style.MouseOffBackgroundColor = "ccccff";
style.MouseOnFontColor = "ffebdc";
style.MouseOnBackgroundColor = "4b0082";
style.MenuBorderColor = "000000";
style.FontSize = 12;
style.FontStyle = "normal";
style.FontWeight = "bold";
style.FontName = "Verdana, Arial";
style.MenuItemPadding = 4;
style.SubMenuImage = "arrow.gif";
style.TDHighColor = "66ffff";
style.TDLowColor = "000099";
style.CurrentPageFontColor = "Purple";
style.CurrentPageBackgroundColor = "pink";
style.TopBarImage = "arrowdn.gif";
style.MenuHeaderFontColor = "ffffff";
style.MenuHeaderBackgroundColor = "000099";

menuitem.MenuName = "mainmenu";
menuitem.MenuTop = 20;
menuitem.MenuBorder = 1;
menuitem.MenuLeft = 200;
menuitem.Style = style;
menuitem.AlwaysVisible = true;
menuitem.Alignment = "left";
menuitem.HorizontalMenu = true;

MMLink mTester = new MMLink("Tester", "http://somewhere", "", "My Status", true);
menuitem.MMLinks.Add(mTester);

MMLink mAnother = new MMLink();
mAnother.DescriptionText = "Another way to do it";
mAnother.URL= "http://someurl.com";
mAnother.Status = "Statusie is cool";
menuitem.MMLinks.Add(mAnother);

menu.MMenuItems.Add(menuitem);


}