Skip to main content

Posts

Language Editor Missing In DNN 5.0 or How to Update Terms and privacy text in Dot net nuke 5.0 or DNN 5.0

Well guys, twhen i tried to update the privacy text or the terms & condition text in DNN5.0 i was shocked that the language editor in the HOST > Language sub menu is mission and obviously its shocking for you thats why you are searching :D any ways here is the locatin for the Language editor in the DNN Login with your host user id Step 1: Click on HOST > Languages Step 2: Click on the pencil with Default Language under the "Extensions" Step 3: Click on " Edit Language Files " link under "Extension Settings " Step 4: Click on the enable check box and update the setting ------ How to update the privacy terms & condition in dot net nuke Follow the above steps for the laugage settings and then do the one more step Additonal Step: Search the privacy or terms that you want to update and update the text I hope it will helps you alot Regards Rashid Imran Bilgrami CEO Best Visualization http://www.bestvisualization.com/

what is project management?

Hello PM If you are new and want to be a PM and did not find how can you start the career with the project management just check out this link http://managementhelp.org/plan_dec/project/project.htm#anchor1 I really love it when i read it All the stuff that you need http://en.wikipedia.org/wiki/Project_management#Critical_Chain_Project_Management Very Important book http://books.google.com.pk/books?id=4ph42sGN9vwC&printsec=frontcover&dq=Project+management+life+cycle&source=bl&ots=vN05o4k1LR&sig=XhUUKQy4gVjFiWU2aT3qOb6FS5w&hl=en&ei=xibqS-TRG5Pu0wS547jlDA&sa=X&oi=book_result&ct=result&resnum=11&ved=0CEYQ6AEwCg#v=onepage&q&f=false    Regards Rashid Imran Bilgrami CEO Best Visualizatio http://www.bestvisualization.com/

How to create a graph in .net

Well guys I found a nice thing and i quote it here that really works for those who are looking to create a graph in . net or dot net nuke, It really solve my problem i hope you it helps you out from the problem too. acctuall link http://articles.sitepoint.com/article/asp-net-graphs-raise-the-bar http://www.bestvisualization.com/resources/bargraph.zip OR http://www.bestvisualization.com/resources/graph.txt Regards Rashid Imran Bilgrami CEO Best visualization

Autocomplete text box in dot net nuke

This article define how you will use the text suggestion box in dot net nuke like google, msn or yahoo websites read this http://www.dotnetnuke.com/Community/Blogs/tabid/825/EntryId/1067/Using-the-DNN-Text-Suggest-Control.aspx Styles for Text suggestion Boxes http://woork.blogspot.com/2009/02/useful-ajax-auto-suggest-scripts.html

How to reset Dot net nuke / DNN host Password

How to reset Dot net nuke / DNN host Password Orignal Post: http://blog.dmbcllc.com/2009/09/22/dotnetnuke-retrieving-host-access/ ============ Dave thanks for the good work =================== One of the most frustrating events that can happen in any system is forgetting your password and not being able to retrieve it. DotNetNuke has a retrieval system built in, but you have to make sure your system can send mail in order to make use of it. And even if it sends mail, it may be that you’ve taken over a system and the host account is not registered to you. So, what do you do? Well, you can’t look in the database for the password because the passwords are hashed. But there are some ways to get back in business. First, let’s take a look at the easy way. Let’s assume that you have the ability to sign up for a new account with a new password. Go ahead and do that. Next, open the database and look for the “Users” table. This table has a bit field called, “IsSuperUse...

Java script Encoder / Decoder

View demo | Download Source Hi every one i found a thing at internet that is done through encoding and decoding of text through Java script thanks man http://www.strictly-software.com/htmlencode you will get the full blog there Here is the class function of encoding /example of using the html encode object // set the type of encoding to numerical entities e.g & instead of & Encoder.EncodeType = "numerical"; // or to set it to encode to html entities e.g & instead of & Encoder.EncodeType = "entity"; // HTML encode text from an input element // This will prevent double encoding. var encoded = Encoder.htmlEncode(document.getElementById('input')); // To encode but to allow double encoding which means any existing entities such as // & will be converted to & var dblEncoded = Encoder.htmlEncode(document.getElementById('input'),true); // Decode the now encoded text var decoded = Encoder.htmlDecode(encoded); // Check whether the ...