I have a plugin I developed for FCK for our management site - its not a hugly complicated one but it was working untill we upgraded our site to DNN 5.2.2
Now the functionality of the plugin appears to be okay (at least it has the correct info in the dialog box) but the 'okay' button does not appear at all - other dialogs appear to not b...
Having some strange behavior here. I have some XSLT which generates some html with a few ASP.NET Link Button Controls
String mstring = sw.ToString();
var myctrl = Page.ParseControl(mstring);
foreach (Control Control in myctrl.Controls)
{
if (Control is LinkButton)
{
...
I have an LinkButton control which I need to add a c# method to. Currently when I use parse control and add the control to the page it changes the call to javascript and I get undefined. I figure a way around this would be to define a javascript function that would call the c# method from the code behind, but I cannot figure out how to d...
I am developing a number of modules for a client that will share some user interface functionality using a common Web User Control to provide the UI. When I wrote the first module and added in the .ascx file, all was fine. When I add the same control to the second module, I get the following error:
DotNetNuke.Services.Exceptions.Modu...
We've got a DotNetNuke 5 based website that uses the ActiveForum module to allow for a forum to exist.
I'd like to show an RSS feed from the forum on another page. So I find the link to the ActiveForum RSS feed, add a News Feeds (RSS) module to the page and then add a feed to the RSS.
This then gives me an error saying it can't load th...
We are in the process of implementing a CMS for our project which currently extensively uses asp.net master pages and css. Also the application is data-driven and controls like gridview and listview are used. After a little search we zeroed on two CMS dotnetnuke and umbraco. Now my question is:
Which one of the two CMS is best suited a...
I have a DotNetNuke Module created in DNN 4.9.2. It runs fine on my dev machine but when I post it to the live server, I just get a blank screen, well my skin with no content.
I have installed and then uninstalled, then reinstalled the module, same issue.
I must be overlooking something. Can anyone outline some ideas on how to trouble...
Can anyone shed some light on why DotNetNuke comes configured with request validation and event validation disabled? They’re both off at the web.config level for a default install which seems to be a regressive approach. Are there any sound reasons for this and what is the functional impact on DotNetNuke if they’re turned back on?
Obvio...
Hello everybody
I am in a crucial project and I am trying to speed up the development phase by using codesmith for generating the business class DAL and info class for the tables of my project.
There are about 50 tables with relationships parent child many to many and for retrieving data I have to code several inner joins in stored pr...
Trying to use the dnn webupload control in a dnn 4.9.2 module. I am using this in the settings.aspx of my module. When I load the page I get a null exception on this line in the page_init:
Me.ModuleConfiguration.ModuleTitle = Services.Localization.Localization.GetString("UploadType" & FileType.ToString, Me.LocalResourceFile)
I tried t...
Hi,
I need to deploy DNN 5.X site on a shared hosting server. This shared hosting has its control panel set to the virtual directory /admin.
So if my site's URL is www.something.com, then the control panel will be www.something.com/admin.
The problem I am having now is that DNN has its own /admin folder with lots of controls located the...
Every time I try to make any change it doesn't work...
Whether I click delete module, try to move a module to a new pane, add a module, even switch from "Add New Module" to "Add Existing Module" all it does is look like it's trying to process (page refreshes, or updates anyways...) and then nothing happens. The page turns out the exact ...
I have the following code:
List<HtmlMeta> metas = new List<HtmlMeta>();
foreach (Control c in this.Page.Header.Controls)
if (c.GetType() == typeof(HtmlMeta))
{
HtmlMeta meta = (HtmlMeta)c;
if (meta.Name == "CategoryID")
strMeta = meta.Content;
}
I created this custom meta tag:
<meta id ="Catego...
I'd like to supplement my existing DotNetNuke website with a side application which is built on MVC.
To do this, I'd like to set the MVC application up on a separate subdomain (e.g. subapp.mydomain.com) and to connect to the same database.
I've tried this already and I can get the MVC app to connect at the ASP membership levels (just u...
Is it possible to integrate sharepoint into a site that was developed in dotnetnuke?
I did find on sourceforge sharepointnuke. Though it seems to only display specific lists. Would this be all i need?
Secondly... it looks like the more i research this.. people suggest Sharepoint is better for intranet use.. and DNN is better for int...
Is there a way to change the default ajax progressbar that is there in dotnetnukes.
Its not for changing the image but i would like to use an altogether different progressbar. The current one displays the progressbar at the bottom of the section. The requirement to replace it with one covering the entire section or part of it. The secti...
So i have dotnetnuke community version 5.2 and i downloaded the source for blog 3.5. For the purpose of learning i want to build the module using source code. But no matter how i add the module from the host account, it fails. Any experience dotnetnuke user able to guide me through? There is practically no good documents online regarding...
I have a ubr file setup to stress test an internal DotNetNuke site with WCAT:
transaction
{
id = "Intranet Home Page";
weight = 1000;
cookies{clear = true;}
sleep{delay = rand("1","500");}
request
{
url = "/";
statuscode = 401;
}
request
{
url = "/";
...
Hi,
I've made an interface called ApprovalEvent in a separate file with the namespace myproject... I've also made a class called PurchaseOrder... it's also in the same namespace, just in a separate file. Whenever I try to make PurchaseOrder implement ApprovalEvent it always says that ApprovalEvent is undefined...
How can I make the cla...
I have dnn 5.2 running on my machine, and installed the blog module, the blog module is also reflected in the development environment i have. But i want to find out, how do i actually develope, or build the blog from source, so i can actually output the .dll file, instead of just running it. If i import the Blog project file from the fol...