Opt In Email 4.0
'Relationship Building' and 'Communication' are two essential nuts and bolts for a business to prosper. This module allows you to bridge both of these and easily generate continuous awareness of your web site, products and services. Your prospects and customers will greatly appreciate this featur
Ultra Flash Player 6.1(16-in-1)
A 16-in-1 dnn module.Powerful yet easy to use. Capable of producing a multitude of functions including:Image rotator/Numeric rotator/ Mp3 player/Wmv player/ Flash video player /YouTube video player/Multimedia player / Text-to-speech podcast / Flipping book player/Banner topic player/Silverlight albu
XMod 5.1
Version 5 of the perennial best-selling tool for creating data-based solutions in DNN without custom programming. This version focuses on greater flexibility, expandability, and ease-of-use.
Ultra Video Gallery 2.4
Ultra Video Gallery is a brother product of Ultra Media Gallery, UVG allows you to add videos in various format and automatically convert them to flv format, you also can add videos from embed code and play them in our integrated flash video player.
Active Forums
The award winning discussion forum and community solution for DotNetNuke is now even better. When you need to build the best community site, you need the best module, Active Forums!
Gloss // ALL COLORS! skin // XML Flash // W3C CSS XHTML1.0
Gloss is the first ALL COLORS! skin, featuring a powerful XML-based flash and being 100% W3C CSS XHMTL1.0 compliant. Tune it yourself on the fly, changing colors, backgrounds, containers, text color and size, width and more! Brilliant!Available for DNN4 and DNN5
Open-DocumentLibrary v3.0
Powerful, Ajax Enabled, Easy to Use. Document Management has never been better. Open-DocumentLibrary allows DotNetNuke users to share and manage documents in a flexible, intelligent way, offering granular control over Folder and Document access.
Minimalist by Evan O'Neil - ALL NEW !
ALL NEW ! - Minimalist includes skin packs in 12 great colors. Each color has Flat, Gradient and Glass versions. Feature rich XML Flash header, perfect for just about any purpose. 9 Different menu options in each skin pack; 3 horizontal menus, 3 vertical menus and 3 all-new Twin level menus . . .
Live Content v1.6.1 :: Web 2.0
Live Content uses Web 2.0 approach to provide a Rich User Interface and streamlines content presentation by overlaying content on current page. Overlay images, videos, audio, text/html content, flash, dotnetnuke modules, and external content. Experience the demo...
Ultra Media Gallery 5.4
Ultra Media Gallery is the most popular photo gallery and media gallery solution for DotNetNuke, UMG offers 10 different flash player to browse your gallery with completely different user interface experience.
Hello All
I just purchased Dynamic Forms and am trying to use it to create a basic form. I have the usual DNN database and also an extraneous database which is going to be the focus of all my queries. Initially, here is what I want to do:
1. Be able to retrieve data from a SQL string and populate text boxes or labels (preferred) with the data.
2. Create a drop down combo box with contents from a sql query.
3. Pass the parameters to a next page and create input text boxes. However, there is a catch here. On the opening page, I ask the user to input the number of records he wants to enter and on the basis of that, I create the number of text boxes that I want. Each of these text boxes have numeric validations on it i.e. they cannot accept non numeric content and they auto-reformat the data to 2 places of decimal.
I used to do this all with classic ASP. Could you please advise, how I would start on this in Dynamic forms. Also, how would I get the connection string to point to the database of my choice.
Hi. Great let me see if I can answer some of your questions. 1. There is no way to populate 'labels' but you can populate textbox or any fields with SQL. I believe under Advanced Field Options there is a 'Default Value'. This can either be text based or SQL based. The request to pull in labels from SQL queries has never come up as a request but if you really needed it you could possibly change one of the stored procedures to maybe inner join to another table for the labels or something. For the textbox or hidden fields though you can pull in the default value. 2. Also for field types such as Check Box Lists, Dropdownlists, Radio Buttons, List Box and so forth there is the option to use sql to pull in the text and value options. I believe the example used for 'SQL Options' is to pull in the Regions from the Lists table but you can use whatever query you want. Just return a column called QuestionOption and QuestinoOptionValue. Additionally, keep in mind that you can use tokens within your query. You can use tokens from other previous fields (the short field name such as $(FName) could be used in a query that represents the first name field etc... Additionally there is a full list of available parameters you can use such as $(UserID), $(CurrentLanguage), $(PortalID), $(ModuleID), etc.... Just remember that any 'text' column needs to have ' before and after it and any integer column does not. 3. Well this can be somewhat troublesome... Is there a chance that they would enter '5' or '10' or would it be more like 1, 2, 3? What you can do is setup 3 seperate pages (one form with 1 field, another with 2, another with 3, etc...). Then one the first page ask the user 'How many would you like to enter?". Then you can create a completion event to redirect the user to different pages based on their response. So you would setup one event that if they chose 'One' redirect them to page one, same for two and three etc... You can setup as few or as many of these completion events as possible and the specific event I am referring to is the URL redirection based on users response to a field. As far as passing field values to the other pages, there is an option (for the first page) under advanced field options to 'Pass field via querystring' or 'Pass field via session variable'. The variable is based on the fields short field name. Then there is an option (for the other page) to 'Retrieve field from querystring' or 'Retrieve field from session variable'. This option allows you to pass fields between pages. IF you don't want the field to exist on the 2nd page (to the user) you could always make it a hidden field type and so forth so that you have access to all of the tokens you need for email events or whatever event you might want to execute. Just make sure to have the short field names be the same on both pages (so if its FName on page one, you could make a field with the short field name of FName on page two and pass variables between them). Hope you find this useful. As far as connecting to the database, you might have to setup a linked server. As long as you can connect (under Host, SQL) or in some type of SQL connection between them you should be fine to connect within DYnamic Forms. If its on the same server you can probably just 'Select from YourDatabase.dbo.OtherTable' -Chad