CODEDIGEST
Home » 
Search
 

Technologies
 

CodeDigest Navigation
 

Technology News
No News Feeds available at this time.
 

In Community
No News Feeds available at this time.
 
Skip To Page: 1 2 3 4 5 6 7 8 
ASP.Net
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.
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.
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.
This artile will list some of the search engine optimzation techniques for asp.net websites.
ADO
My Previous articles discussed about the new features that was packed in ADO.Net 2.0. In this article, we will understand how to implement asynchronous operation in ado.net. Using this feature, we can execute bulk database operations asynchronously against a database.
The Part IV of this article series - ADO.Net 2.0 Features, will help us understanding 2 more new features that are packed with ADO.Net 2.0, Connection Statistics and TransactionScope Object.
The Part III of this article series - ADO.Net 2.0 Features, will help us understanding 2 more new features that are packed with ADO.Net 2.0, MARS and Generic Data Access.
The Part 2 of this article will help us understanding ToTable() method that was introduced newly in .Netframework 2.0. It creates and returns a new DataTable based on rows in an existing DataView. Read more on this article.
ASP.Net Ajax
In my previous article Using Authentication Services in ASP.NET AJAX for Forms Authentication we have understood how to use the authentication service to provide forms authentication in ajax applications. Most of the times, we will also have number of roles to provide different set of permissions to different users. The ASP.Net AJAX Extensions 1.0 released for ASP.Net 2.0 does not have an inbuilt service like authentication service that provides roles support. The next version of ASP.Net AJAX th
Debugging AJAX using Microsoft AJAX Library, Internet Explorer and Mozilla Firefox,Developing AJAX applications that involve complex client-side programming and communication with the server side raises the need for equally complex debugging tools and techniques.
Caching,It’s nothing but a thought kind of memory. Application,Its nothing but similar to Session with a bit difference that is Session objects have scope within a particular session while application objects having scope within entire application.
In Part 1, we have seen how to make AJAX calls through POST and GET method using JQuery library. , In Part 2 of this article series, we will see some of the advanced usages of JQuery with ASP.Net AJAX application.