By John Bubriski on October 25, 2010
If you ever do something like this… try { // Some potentially dangerous code } catch (Exception ex) { // Do nothing and swallow the exception } …DON’T. There is never a good reason to do this! If you have this code in a Class Library the problem is magnified! Doing this makes it hard [...]
Posted in Programming | Tagged .NET Framework, ASP.NET, C#, Code, Elmah, Exceptions, Kentico API Programming, Try/Catch |
By John Bubriski on October 18, 2010
So recently I’ve created a couple useful code snippets, and here they are for you to download! Download My Code Snippets To use them, just place them in your custom code snippets directory, which will be something like: C:\Users\{username}\Documents\Visual Studio 2010\Code Snippets Here are the snippets that are included in the zip file download: C# [...]
Posted in Programming | Tagged .NET Framework, ASP.NET, C#, Code, Code Snippet, jQuery, SQL, Visual Studio |
By John Bubriski on July 18, 2010
Kentico has an email template feature that is used in many areas of the CMS. When a user registers, posts to the forum, or places an order in the E-Commerce system, they are sent an email from a predefined template that has been filled with their information. I’ll show you how easy it is to leverage this feature in your own code.
Posted in Kentico, Programming | Tagged .NET Framework, ASP.NET, C#, Code, Email Templates, Kentico API Programming |
By John Bubriski on July 16, 2010
A coworker of mine had a BizForm in Kentico that needed a dynamic URL Redirection after the form was submitted. Based on the page with the BizForm, the user would be redirected to a different thank you page. There are many reasons you could want dynamic thank you pages for a single form. For starters, it’s a lot easier to manage one set of data. Then there are the SEO benefits of having separate thank you pages. Don’t forget you might simply want different content, or another page/template entirely!
Posted in Kentico, Programming | Tagged .NET Framework, ASP.NET, C#, Code, Kentico API Programming, Kentico Macro Expressions |
By John Bubriski on July 8, 2010
Two weeks ago I was developing some custom functionality for Kentico CMS. I realized that my custom code had a lot of configurable settings (configuration settings). In the past, we’ve used the appSettings section of the web.config, but I’ve never liked it. Mainly, the appSettings section is unmanageable by non-technical users, although there are other reasons. So I decided to develop a custom module to store custom configuration settings right inside Kentico!
Posted in Programming | Tagged .NET Framework, ASP.NET, C#, Code, Kentico API Programming, Kentico Module Development |
By John Bubriski on June 24, 2010
A Forum Group in Kentico is the outer forum entity, and the Forums inside that Forum Group are the different areas where people actually post threads. It is a standard online forum configuration. Forum Groups can be stand alone, or belong to a Community Group. Using the API, we can create Forum Groups and Forums programmatically.
Posted in Kentico, Programming | Tagged .NET Framework, ASP.NET, C#, Code, Kentico API Programming |
By John Bubriski on June 23, 2010
While the community features of Kentico are good, there are some things that are lacking, one of which is a default group setup. So when an end user goes to your site and creates their own group, they have to manually create a Media Library. Our customer wanted the group to be fully configured upon creation, so I added some code to the group registration web part in order to do so.
Posted in Kentico, Programming | Tagged .NET Framework, ASP.NET, C#, Code, Kentico API Programming |
By John Bubriski on March 13, 2010
As the title of his post states, you can’t reference fields when using ASP.NET’s data binding syntax. If you try it, you will get a runtime exception that looks something like this: DataBinding: ‘MyDataClass‘ does not contain a property with the name ‘MyProperty‘. Description: An unhandled exception occurred during the execution of the current web [...]
Posted in Programming | Tagged ASP.NET, C#, Data Binding, Field, Property |
By John Bubriski on May 27, 2009
So I decided to try and use this as a storage mechanism for my snippets of code. Here is the first one! How to uninstall and reinstall ASP.NET! You might need to do this if you start having issues with ASP.NET. C:>cd windowsMicrosoft.NETFrameworkv2.0.50727 C:WINDOWSMicrosoft.NETFrameworkv2.0.50727>aspnet_regiis -u Start uninstalling ASP.NET (2.0.50727). ……………………………. Finished uninstalling ASP.NET (2.0.50727). C:WINDOWSMicrosoft.NETFrameworkv2.0.50727>aspnet_regiis [...]
Posted in Programming | Tagged .NET Framework, ASP.NET, IIS, Windows |