I m faced this problem during setting up the Development Server Envirnonemt for DotNetNuke where web apps in Server A and Database sit in Server B. For more information, you can refer this link (If SQL Server is running on a remote computer and the Web server is running IIS 6.0, give the Web server’s machine [...]
Posts Tagged ‘dotnetnuke’
Sql Server Login failed without using user login
Posted in ASP.NET 2.0, DNN Deployment, asp.net, tagged dotnetnuke, SQL Server on December 9, 2008 | 1 Comment »
How to add meta tag in DotNetNuke
Posted in Uncategorized, tagged dotnetnuke on November 5, 2008 | Leave a Comment »
If you wish to add a meta tag in DotNetNuke, here the step to do it.
Go to Admin tab –> Page –> Click the page (home tab, for instance) –> the Page Settings –> Advanced Settings –> Page Header Tags
Enter the content you require, ie. I use this feature to date each of the pages [...]
Send Email Using DotNetNuke Framework?
Posted in ASP.NET 2.0, DNN Deployment, DNN Module Development, DotNetNuke v4, asp.net, dnn, dotnetnuke, tagged ASP.NET 2.0, dotnetnuke on January 22, 2008 | 4 Comments »
Since I m using DNN to built module, I m also wish to utilize as much as possible from DNN framework.
To send Email, I m just simply use API below
DotNetNuke.Services.Mail.Mail.SendMail
A single line of code to solve a problem. Here the simple example I used :
DotNetNuke.Services.Mail.Mail.SendMail(FromAddress, SendTo, “”, Title, output.ToString(), “”, “”, “”, “”, “”, [...]
Use Email Service Offered by DNN
Posted in DNN Module Development, DotNetNuke v4, dnn, dotnetnuke, tagged dotnetnuke on December 5, 2007 | Leave a Comment »
I m have a hard time when I m need to figure out how to configure the email in DNN. (next time I m must read the manual properly)
I put the right SMTP server and port but still not manage to send email out, then I noticed I did not put the host email in “host [...]
Export to Excel not work well with partial rendering?
Posted in DNN Module Development, DotNetNuke v4, dnn, dotnetnuke, tagged dotnetnuke on December 2, 2007 | Leave a Comment »
in case your application got a function for exporting to excel, some of you might having the same problem when we click on the button, the system will simply pompt us a javascript pop up error, but weird, it work well in ordinary aspx page.
after i m disable the partial rendering, it back to work [...]
use DotNetNuke.Entities.Tabs
Posted in ASP.NET 2.0, DNN Module Development, DotNetNuke v4, asp.net, dnn, dotnetnuke, tagged dotnetnuke on November 14, 2007 | Leave a Comment »
in my previous post, I blogged about NavigateURL from view page to edit or another view page in the same module.
what if i want to navigate to other module? For better understanding, From DNN Module A to DNN Module B, both module doesnt related to each other.
Ok, first we need to import the Namespace “DotNetNuke.Entities.Tabs”
Declare the [...]