Skip to main content

Posts

How to Add Secured File On DNN

Dear All If you want to upload any image, PDF or any other file in DNN as secured file and you want it will be accessible to  specific Group, member or any register member then follow the below steps : 1) Login to your host 2) Go to File Manager 3) Select the Folder type "Secured" instead of standard 4) Press on Create folder button After Folder creation apply the permission through bottom permission window Regards Rashid Imran Bilgrami http://www.bestvisualization.com

Adding Awesome Calender in Dotnetnuke or DNN Module

Dear Readers Today i found the very easy solution for display calender in DNN module by two easy steps DotNetNuke provides with inbuilt jquery.js and jquery-ui.js so you don't have to bother to link them separately In regular html / asp.net application you would have to add following lines in <head> tag <script src="http://code.jquery.com/jquery-1.8.2.js"></script>   <script src="http://code.jquery.com/ui/1.9.0/jquery-ui.js"></script>   <link rel="stylesheet" href="http://code.jquery.com/ui/1.9.0/themes/base/jquery-ui.css" /> Note: If you did not see the calender then copy and past the above link  If you are developing a custom DNN module add this to your user control view.ascx file. I have txtStartDate as a text field on the form where I wanted my calander to be rendered on click. To achieve this I added this code at the top of my ascx page after the standard includes. <script type=...

Allow Anonymous Authentication at website through IP Address or Computer Name

Dear All, Today i resolved an issue which is very basis but the solution is little bit tricky. The problem was related to accessing the website on LAN through IP or the domain name by anonymous user. I setup the site through IIS and run it on local host, the website runs perfectly. But when I tried to access the same website through IP Address  or Domain Name it's prompting the user name and password. I do the following steps but i did not get any success  1) Open the site property in IIS through website property and allow anonymous access Result the website still ask me user name and password 2) Open the web.config and add the following code   <authorization>         <allow users="*"/> //Allow everyone       </authorization> Result the website still ask me user name and password 3)  I made the the directory permission on every one and IIS user Result the website still ask me user name and pas...

How to run python on IIS 7 Tested version

Dear Reader Today i run the paython on IIS 7 it's not a big issue but i did one mistake that waste my whole week and i don't want that you waste your time on it so i am sharing the video its 100% workable for me Regards Rashid Imran Bilgrami http://www.bestvisualization.com

ACII Shapes For HTML

Dear Readers; If you are looking for using the shapes icons in HTML format then  http://www.chaos.org.uk/~eddy/bits/chars.html  is the best place for you I hope it helps you Regards Rashid Imran Bilgrami www.bestvisualization.com

Drop Shadow With CSS For All Web Browsers

Dear Readers I found an article for drop shadow supported in all browsers Ref URL:  http://robertnyman.com/2010/03/16/drop-shadow-with-css-for-all-web-browsers/ One of the most common CSS effects is using shadows in various ways. Before, we needed to resort to images, but now we can offer this to all major web browser with CSS! Web Browser Support Believe me or not, but all of these web browsers we can offer shadows with CSS: Firefox 3.5+ Safari 3+ Google Chrome Opera 10.50 Internet Explorer 5.5 The Standards Way As we all know, a majority of the web browsers implement features in a standardized way, while others don’t (although they are getting better at it). Previously, in the W3C specification CSS Backgrounds and Borders Module Level 3 box-shadow was described, although at the moment, it’s not in there for some things to be discussed further. Anyway, this is how the implementation looks: .shadow { box-shadow: 3px 3px 4px #000; } The first value desc...