Skip to main content

Posts

Showing posts from March, 2012

Facebook Apps (How to add like button in your website)

Dear All Today i am telling you how easily you add the facebook like button in your own website. Go to this URL https://developers.facebook.com/docs/reference/plugins/like/ and do the following steps 1) Provide URL 2) Set width 3) Set color scheme 4) Get code Past this code in your HTML head tag between and your like button is ready Regards Rashid Imran Bilgrami http://www.bestvisualization.com 

Convert Bulk PSD files in to JPG

Dear All, May be lot of people know about it.. I just get the info and share with you guys Regards Rashid Imran Bilgrami http://www.bestvisualization.com

Unable to save the dnn survey template or survey setting. or Survey settings are completely not saving

Dear All If you are facing a problem to update the DNN survey module template, then the solution is very simple Just update the latest release 4.7.01  the problem will resolve [This problem only arrive so far in dnn 6.x portals] http://dnnsurvey.codeplex.com/releases/view/71226 Best regards Rashid Imran Bilgrami http://www.bestvisualization.com 

Localization of module container title in DNN or Translate your DNN module Title In different Languages

Dear All If you are looking for the translation of dnn container title then there are two solution 1) You can go with the appolo module which helps you to localize the HTML module title (for this see my prior post  http://bestvisualization.blogspot.com/2011/06/multi-language-website-in-dnn-or.html ) 2) If you are developing you own module then use (Specially thanks for Psturdee answer get through dnn forum your module's Page_Init method: protected void Page_Init(object sender, EventArgs e) { this.ModuleConfiguration.ModuleTitle = "Whatever you want your module title to be"; } You can use Resource files to provide the strings with something like this: protected void Page_Init(object sender, EventArgs e) { this.ModuleConfiguration.ModuleTitle = Localization.GetString("ModuleTitle", Localization.GetResourceFile(this, "YourModule.ascx"); } then define in your resource files, "YourModule.ascx.[lang].resx", a name, "Modul