Month: January 2017
Changing the Skin/Container has no Efffect in DotNetNuke (DNN)? Here is a Quick Fix
I recently upgraded my DotNetNuke (DNN) Website. I had developed a custom responsive skin using Bootstrap. I had tested the same in my dev environment and everything was working fine so I updated the live environment. Even though there were no errors reported, when I tried to change the skin, it was giving me the…
SSIS – Two Ways to Add New Line Character (CRLF) to the Fixed Width Flat File
In SSIS package, if you create a fixed width flat file, SSIS does NOT add new line character (CRLF) at the end of the row. So when you run the package, all the data are stored in one single line in the flat file. Add CRLF Column to Destination You need to add additional column…
|
SSIS – How to Create a New Line Character (CRLF) Column as Derived Column
Use the following expression in order to create a derived column By default Data Type of string “\r\n” is DT_WSTR so here I am casting the data type to DT_STR
|
Easy Way to Remove the Default.css From DotNetNuke (DNN) 7
I am currently working creating a simple DNN responsive skin using Bootstrap and found that default.css, skin.css is causing a trouble. I tried to find the solution of how to remove those css from being downloaded in the page and could not find the quick solution without using custom module and adding the tag into…
Export Outlook From, To, Subject, Receive Date and Other Meta Data Into Excel
I had a need to export all the emails’ meta data like From, To, Subject, Receive Date from Outlook. Quickly searching on the internet, I found the script at http://superuser.com/questions/816289/exporting-attachment-file-name-email-metadata-from-outlook-to-excel so I quickly created a spreadsheet and exported all the needed information. I have made following modification to the code Commented out exporting email body…
How to Fix: “MSORA” is not recognized as a valid connection manager type
Error The connection type “MSORA” specified for connection manager “” is not recognized as a valid connection manager type. This is the most dreaded error while working with Oracle and Attunity and could not find why it would not work even after installing everything that is needed. Edit: Updated for Attunity 4.0 and 5.0 based…
|
Why Bootstrap Button Click Submits Form Instead of Opening Modal Dialog?
Bootstrap makes it easy to open the modal dialog upon the button click. HTML code and Bootstrap Javascript will automatically take care of lots of modal dialog activity behind the scene. I encountered a strange situation where the same code would work in the HTML page but not in the aspx page. The issue is,…