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 > starter_kits_and_source_projects.portal_starter_kit Tags:
Item Type: NewsGroup Date Entered: 5/4/2004 2:54:05 PM Date Modified: Subscribers: 0 Subscribe Alert
Rate It:
(NR, 0)
XPoints: N/A Replies: 11 Views: 20 Favorited: 0 Favorite
Can Reply:  No Members Can Edit: No Online: Yes
12 Items, 1 Pages 1 |< << Go >> >|
Graphfixz
Asp.Net User
skmMenu5/4/2004 2:54:05 PM

0/0

Has anybody been able to incorporate skmMenu into the IBS Portal using C#?

If so, how? Any docs out there?


Thanks in advance!
Graphfixz Data & Web Design
http://www.graphfixz.com
spawned
Asp.Net User
Re: skmMenu8/17/2004 11:46:19 AM

0/0

Yes I built a menu that manages the tab layouts ala Dot Net Nuke. Replacing the edit 'pencil' which a menu, in the module title control. Allows you to move tabs about, edit, delete. DNN used Solpart menu, although they seems to be more vb orientated. The support for skmMenu is not much better, in terms of codes examples.

Shaun.
Hammer12
Asp.Net User
Re: skmMenu8/22/2004 1:20:57 AM

0/0

I have done it in c#. check out NPSchools.com.
Is this something like what you are looking for? I choose to use the tabID and tabIndex method that the original portal did.
No Animals were harmed in the making of the Application

Hammer12
Hammer12
Asp.Net User
Re: skmMenu8/22/2004 1:21:16 AM

0/0

I have done it in c#. check out NPSchools.com.
Is this something like what you are looking for? I choose to use the tabID and tabIndex method that the original portal did.
No Animals were harmed in the making of the Application

Hammer12
DavidGMiles
Asp.Net User
Re: skmMenu8/26/2004 8:43:37 AM

0/0

Hammer12 - any chance you can send me your code - I realise it is in C# - I'll convert it to VB - I need an implemetation of skmMenu for a project in IBS and this would save me time

Cheers

DavidM
Various IBS Addons available at http://www.snowcovered.com

Lead Developer [vb & c#] - MCAD
Hammer12
Asp.Net User
Re: skmMenu8/26/2004 4:21:03 PM

0/0

Yes,
I will send it to you tonight. I am at my real job right kenw and don't have access to it. I only ask that you do not post the source code. Not that it is anything great but I was going to try to write an article. Also if you find any code errors or bad pratice please inform me. I do this as a hobby so I am sure I don't always use the best pratices. I actually use the DB structure idea from you article on implementing the ASPNETMenu. It is very easy to implement. You will just need to create you own SP for SQL I am using Access for mine.


No Animals were harmed in the making of the Application

Hammer12
davidgmiles
Asp.Net User
Re: skmMenu8/26/2004 6:03:04 PM

0/0

Great - I won't post it - but when I have converted it - I'll send it back to you - that way when you do the article you can offer both C# and VB source
Various IBS Addons available at http://www.snowcovered.com

Lead Developer [vb & c#] - MCAD
davidgmiles
Asp.Net User
Re: skmMenu9/7/2004 11:43:58 AM

0/0

Any news on this code?
Various IBS Addons available at http://www.snowcovered.com

Lead Developer [vb & c#] - MCAD
Hammer12
Asp.Net User
Re: skmMenu9/7/2004 4:13:09 PM

0/0

Sorry.
I sent it to you the day I posted. I can resend it. Since it was in access I sent yout he entire project. I will resend it tonight if you are still interested. I was wondering why I had not heard from you on it. Must be you did not get it. I am at work right now I will resend when I get home.
No Animals were harmed in the making of the Application

Hammer12
Hammer12
Asp.Net User
Re: skmMenu9/8/2004 1:14:28 AM

0/0

I just sent you the 2 modified files. If you do not receive them let me know.
No Animals were harmed in the making of the Application

Hammer12
John Spurlin
Asp.Net User
Re: skmMenu10/22/2004 3:07:59 AM

0/0

Hammer how does the menu work with Netscape 4 and IE 4?
If I am not learning patterns and practices, I am not harnessing the power of .NET
Jeff Chang
Asp.Net User
Re: skmMenu10/22/2004 8:27:07 PM

0/0

This kind of menus tend to produce large page size, which will have obvious performance impact. For sites with large number of pages (tabs), it's not necessary for the site navigation menu to load all the page links, should take advantage of the hierarchy structure to give viewers just enough links to go around.

Let's count some numbers, in characters:

www.npschools.com, home page,

html total: 196,315
menu: 92,282
ViewSate: 59,664

these two is over 77% of the page total;

DotNetNuke site, home page,

tatol: 115,140
Solpartmenu: 8,784, spmenu.js : 74,892
viewstate: 22,140

27% without counting spmenu.js , 92% of page total with spmenu.js, which will be cached, so just load once.


My site is also a modified IBuySpy, the home page,

total: 14895
menu: 3208
viewstate: 32

menu & viewstate count for 22%, the size of menu & viewstate is generally this size, about 4-6K, no matter what viewable content on the page.

ASP.NET performs a lot better, that is, the server side processing, but care should be still given to what it will produce, so not to overload network with huge Html source.













WebSql Data Provider, Secure, efficient remote SQL database access over HTTP!

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


Free Download:

Books:
Visual Studio Hacks Authors: James Avery, Pages: 478, Published: 2005

Web:
skmMenu Homepage skmMenu.com is the official homepage for skmMenu, an open-source ASP.NET menu server control. skmMenu was created in October 2003 by Scott Mitchell for a ...
Download skmMenu Download skmMenu 2.2 Examples - Robert Vreeland has compiled a number of skmMenu examples that he and Steven Perry created. The source code for these ...
skmMenu skmMenu is a custom ASP.NET server control developed by Scott Mitchell for an article on the ASP.NET Dev Center on MSDN Online. skmMenu renders a menu in a ...
skmMenu with Horizontal Layout This demo shows skmMenu with its top-level menu in a horizontal layout. One can layout a menu horizontally by merely setting the menu's Layout property to ...
Examining the skmMenu Server Control Summary: Learn about the skmMenu ASP.NET menu server control source code and about ASP.NET server control development. (28 printed pages) ...
skmMenu code change to work with xhtml doctypes - .NET Blog ... Basically, when I upgraded one of my sites to .net 2.0, skmMenu got upgraded right along with it. The only issue was that all of my menus would show up at ...
Problem with SKMMenu - VB.NET Problem with SKMMenu - VB.NET Community and Forum - Our VB.NET forum is the place for Q&A-style discussions related to this language.
skmmenu attribution The menus on this site make use of the excellent skmmenu, an open source .net menuing system by Scott Mitchell that has allowed us to create a very flexible ...
mojoPortal - Scott Mitchell's skmMenu Today I integrated Scott Mitchell's skmMenu, an open source cross-browser Dynamic HTML menu for ASP.NET. It took me quite a bit of experimentation before I ...
skmmenu 2.3 for Framework 2.0 (now works on Firefox) | Script(s) Eventhough Visual Studio 2005 has Menu control, I feel skmMenu is still flexible and useful. I feel skmMenu is better than Menu control in following.




Search This Site:










windows authentication roles/ad groups not working ... v3.2

3.0.11: doesn't redirect to page after successful login

where ms-access dataprovider for dnn 3.x is found ?

login without login control?

windows authentication

email address as username and confirmation url

3.0.9 - page management selecting an item causes postback

find and replace with deployment project

some bugs within jeremy's starter project..?

visual developer

problem after renaming aspnetdb

how long can a web page run?

updgraded app hangs on profile

looking for a asp.net 2.0's membership courses

plus symbols in sqldataprovider

pagedannouncementlist stored procedure question

task manager module

need bids

legality of contributing to projects / sub-projects

any suggestions for sitemap module.

sample code for custom roleprovider implementation

authenticate users against a asp.net role-based model

server error in '/' application problem

frienly url characters

how do you access a portal without creating iis virtualsite?

forms authentication and out of band callbacks (ajax)

path for loginurl attribute using subfolder

how to add a check box to a tree node

aspnetdb and iis

url rewriting blog entries

 
All Times Are GMT