Articles
|
In Part 1 of this article series, we have seen some of the basic configurations of log4net framework to configure error logging in Asp.Net applications. The log4net framework is designed in such a way so that we can customize it to any level to fit in our needs. In this part, we will see more about customizing the log4net framework which will be more useful in real time applications.
Posted on 10/20/2012 @ 12:10 AM
By Bala Murugan
in ASP.Net
|
Logging is one of the most inevitable parts of any application we develop. Any application when deployed to production should have a proper logging framework that can log the errors to a viable source in order to get more information about the error for debugging purposes.In this article, we will see how to integrate and use log4net logging framework in ASP.Net applications.
Posted on 5/20/2012 @ 6:25 AM
By Bala Murugan
in ASP.Net
|
CKeditor is one of the most widely used WYSIWYG editors for web applications. Overtime, the CKeditor continued to evolve by adding new features that made HTML text editing a lot easier.When using a WYSIWYG editor, we will often need to upload image to server and embed it in the HTML content. In this article, let’s see how we can upload image to our website and embed it in CKeditor without using the above paid solutions.
Posted on 4/6/2012 @ 11:55 PM
By Bala Murugan
in ASP.Net
|
This artile will list some of the search engine optimzation techniques for asp.net websites.
Posted on 3/30/2012 @ 7:24 AM
By Bala Murugan
in ASP.Net
|
Asp.Net control set has a set of validation controls that offers input validations without writing a line of code. Often the functionalities provided by the validation controls are suffice to satisfy the validation requirements in our projects.
Posted on 10/8/2011 @ 1:51 AM
By Satheesh Babu B
in ASP.Net
|
My previous article, Sorting in ListView control in Asp.Net - Using DataSource controls demonstrated sorting on the ListView data when using datasource controls. In a real world application, most of the time we will end binding the ListView control ourselves without depending on the datasource controls for variety of reasons. Moving forward, let’s understand how to deal with this challenge and implement a working sorting feature on the ListView control when manually binding the data from codebe
Posted on 9/22/2011 @ 9:59 PM
By Bala Murugan
in ASP.Net
|
ListView control is one of the most preferred and powerful databound controls when it comes to displaying data. ListView control allows developers to customize the data display to any layout in addition to its inbuilt capabilities like CRUD support, sorting and paging with very less code. Moving forward, let’s understand how to develop sorting feature in the ListView control when using DataSource control along with ListView control.
Posted on 9/22/2011 @ 7:57 AM
By Bala Murugan
in ASP.Net
|
Image cropping is a technique where a portion of a larger image can be selected and cropped from the original image. This cropped image can then be used separately for our use. There are large numbers of software available for this type of image editing like Microsoft paint, Picture manager etc. At times, we may want to provide a feature where we can allow our website users to upload an image and crop a part of the image from the original image. Moving forward, let’s understand how to achieve th
Posted on 4/10/2011 @ 10:01 AM
By Satheesh Babu B
in ASP.Net
|
It is obvious that we will segregate the related files in different subfolders in our project solution. Sometimes, we may organize the files based file types, or based on the project modules, etc. This brings in some complexities when you want to link a file (IMG, hyperlink, etc) in different folder using its path. Most often, we face issues when we are displaying images or adding hyperlinks in master page when the target image or page is in different folder. Moving forward, let see more about t
Posted on 4/7/2011 @ 8:43 AM
By Bala Murugan
in ASP.Net
|
HttpUtility is the class library provided by the Asp.Net consists of set of methods which are useful in developing web applications. The utility mainly provides methods for encoding and decoding urls useful for processing Web Requests. In this article I will be explaining in detail about each method by quoting some real time scenarios where actually these methods are useful
Posted on 4/5/2011 @ 9:16 AM
By Suresh Kumar Goudampally
in ASP.Net
|
|