Products

Solutions

Resources

Partners

Community

Blog

About

QA

Ideas Test

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

Welcome to the DNN Community Forums, your preferred source of online community support for all things related to DNN.
In order to participate you must be a registered DNNizen

HomeHomeArchived Discus...Archived Discus...Developing Under Previous Versions of .NETDeveloping Under Previous Versions of .NETASP.Net 2.0ASP.Net 2.0Developing "large" modules?Developing "large" modules?
Previous
 
Next
New Post
2/6/2007 11:55 PM
 
What I have in mind is creating a module(s) for writing reviews for things like movies, videogames, music and other assorted media.  The problem is that I envision it to contain multiple pages that each contain a set of controls for user entry, administration and viewing.  Based on all of the introductory code I encounter it rarely discusses something of this complexity.  Generally, how would that be approached?  It's seems like it's a composite of the controls(modules?).  Would I have to create multiple modules and then add them manually to a portal?  Could I create a portable "portal" used for this overall project?  Can I have a module that occupies multiple content areas on a page?

I'm new to the DNN scene so I'm still figuring out where to find things and how to develop for the framework.  I've read the module dev doc and clicked the sticky forum posts to find the information I'm looking for but it's a bit beyond the scope of the "Hello, world." type introduction to module development.  I'm fairly experienced with ASP.NET and N-tier development so I'm not out of my element here.  I'm just trying to sketch out how I'm going to do this.  I've actually already done this from the ground up at my current website.

http://pixel-eight.com/


You can see some of what I mean for the videogame reviews here(minus the administrative menus and user entry):

http://pixel-eight.com/ShowAllReviews.aspx?t=1

I don't have the time to continue to develop my own web portal and truthfully a lot of that work is just boring me to tears.  I'd rather develop for things that are directly related to my other hobbies. 
 
New Post
2/7/2007 1:42 PM
 
Hi,
For the past two weeks I went through the same route you are going and it took alot of searching to find anything more advanced than Hello World for Module development.
I am sure you have come across Michael's site http://www.adefwebserver.com/DotNetNukeHELP/DNN4_SurveyModule/ and the DNN Wiki site which have great information and both webmaster's are very helpful.

I am also developing a large Module which is based on an existing web site. The route I went with was to make one User Control my main module and link to or include other User Controls for navigation and functionality. An excellent explanation and idea about controlling your flow on the page is here; http://opensource.indyneinc.com/home/DevX/Articles/MultiViewControls/tabid/67/Default.aspx

HTH
 
New Post
2/8/2007 3:40 AM
 
IMHO, after looking at pixel-eight.com, I would use either Ventrian's News Articles or something like XMOD.

I would only do custom module development if

a) you have VERY specific business requirements that an existing module cannot handle
b) you think that the time invested would be less than the cost of purchasing said module...

The other advantage of buying something like Ventrian's News Article module is that you get the source so can tweak it to match your specific requirements and get the best of both worlds...

Entrepreneur

PokerDIY Tournament Manager - PokerDIY Tournament Manager<
PokerDIY Game Finder - Mobile Apps powered by DNN
PokerDIY - Connecting Poker Players

 
New Post
2/8/2007 5:48 AM
 

Ok... let me answer your questions:

nickswarr wrote
What I have in mind is creating a module(s) for writing reviews for things like movies, videogames, music and other assorted media.  The problem is that I envision it to contain multiple pages that each contain a set of controls for user entry, administration and viewing.  Based on all of the introductory code I encounter it rarely discusses something of this complexity.

That's actually one of my biggest objections to the DNN guys that "drive" module development. I also think that there is not enough attention given to more complex module solutions.

I personally try to focus on that field (you can view my tutorials which can point you in the right direction for starters), but I too haven't given anough effort into providing proper guidance for more serious solutions (I hope that will change in the near future).


nickswarr wrote
Generally, how would that be approached?  It's seems like it's a composite of the controls(modules?).  Would I have to create multiple modules and then add them manually to a portal? 

My experience is that I approach these situtations by diving the functionalities of several modules (one example is www.dvdtrailers.nl - module set on which I've been an architect, medium in size (has only about 8-9 modules), but enough to show you the intent), thus giving the implementator the option to "modularize" his implementation by putting these modules in different combinations over different pages. Usually my modules communicate over querystring (so I can utilize the cross page communication), and in situations where I need to respect the exact order of communication or if I am sure that the modules will be implemented on the same page I use IMC.

In rare situations I need to implement more then one screen per module, then I use child ascx controls which I load into that module based on some improvised menu, querystring or something similar.


nickswarr wrote
Could I create a portable "portal" used for this overall project?  Can I have a module that occupies multiple content areas on a page?


When you create your implementation, you can export that portal to a template and then import the template when needed with an already prepared implementation (although some manual tweeks will probably be needed)


nickswarr wrote
I'm new to the DNN scene so I'm still figuring out where to find things and how to develop for the framework.  I've read the module dev doc and clicked the sticky forum posts to find the information I'm looking for but it's a bit beyond the scope of the "Hello, world." type introduction to module development.  I'm fairly experienced with ASP.NET and N-tier development so I'm not out of my element here.  I'm just trying to sketch out how I'm going to do this.  I've actually already done this from the ground up at my current website.

If you have any more questions like these... or any questions generally how to develop these kinds of modules, just post them here... I am sure I (and not only me) can help you solve most of your problems and unclearities.

Hope this helps,

 


Thanks,
Vladan Strigo
NETMedia

My website: Vladan.Strigo.NET

Vladan.Strigo.NET: Projects
* Advanced VS2005 development approach - BlankModule
* DNN & Microsoft Ajax best practices guidance

Vladan.Strigo.NET: Resources
* Comprehensive list of DNN 4 Module development resources

 
New Post
2/8/2007 5:51 AM
 

rodneyjoyce wrote
IMHO, after looking at pixel-eight.com, I would use either Ventrian's News Articles or something like XMOD.

I would only do custom module development if

a) you have VERY specific business requirements that an existing module cannot handle
b) you think that the time invested would be less than the cost of purchasing said module...

The other advantage of buying something like Ventrian's News Article module is that you get the source so can tweak it to match your specific requirements and get the best of both worlds...

A good point as well... Think well about ROI (return of investment) before going into completly new module development... for most situations you can find 80-90% already done functionality with other solutions (e.g. Ventrian.com NewsArticles.... I use them as a blog solution).




Thanks,
Vladan Strigo
NETMedia

My website: Vladan.Strigo.NET

Vladan.Strigo.NET: Projects
* Advanced VS2005 development approach - BlankModule
* DNN & Microsoft Ajax best practices guidance

Vladan.Strigo.NET: Resources
* Comprehensive list of DNN 4 Module development resources

 
Previous
 
Next
HomeHomeArchived Discus...Archived Discus...Developing Under Previous Versions of .NETDeveloping Under Previous Versions of .NETASP.Net 2.0ASP.Net 2.0Developing "large" modules?Developing "large" modules?


These Forums are dedicated to discussion of DNN Platform and Evoq Solutions.

For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:

  1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DNN.
  2. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
  3. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  4. No Flaming or Trolling.
  5. No Profanity, Racism, or Prejudice.
  6. Site Moderators have the final word on approving / removing a thread or post or comment.
  7. English language posting only, please.
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out