CODEDIGEST
Home » 
Search
 

Technologies
 

CodeDigest Navigation
 

Technology News
No News Feeds available at this time.
 

In Community
No News Feeds available at this time.
 
ASP.NET
Articles
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
Updatepanel control is part of the asp.net released with asp.net 2.0 as part of asp.net ajax which has brought a new revolution to asp.net ajax applications. The component is mainly used for asynchronous processing of the http requests and partial rendering. Though this concept is not latest topics I want explain in this article the internals of update panel how it actually works and the major features of it.
The Gridview control in asp.net needs no introduction and we all know what is JQuery and its advantages. To do client operations on the GridView control we end up writing number of lines code in javascript. Recently in one project I have implemented client side stuff on GridView using JQuery and thought of sharing my knowledge through this article. This article gives you a glimpse of how we can do client side operations of the GridView using JQuery with some examples. The primary advantage of
Caching is one of the best practices to improve the performance of any application we develop. For example, any business application will be very dynamic, complex and resource intensive in nature. In these scenarios, one can consider caching the output from a resource intensive processing so that the output can be served directly for the subsequent requests without processing it again. Read more..
XML is very versatile and most commonly used data format in any applications we develop. Hence, there will be always a need to read and write xml files in our day today development tasks. Moving forward, this little article will help us understand how to read and write xml files using C# in ASP.Net.
My previous article helped us to create a multiple file uploading system in ASP.Net. The main drawback of that approach is, it requires adding a new file upload control for every extra file we need to upload. Read the article to know more. Moving forward, we will develop a system where users can select multiple files at a time..
In general we all know that we compress the data and post it to the web server and the server decompresses the data to process the request. This is done to optimize the server performance and gain the bandwidth benefit. In this article I will be explaining how to compress a file using GZipStream utility in .Net and post it to the server. And also how the server application decompresses the data and executes the request. I will be demonstrating the whole process using a windows form application w
Sending email is one of the most repeated tasks we do in any asp.net website we develop. At times, we may need to allow users to attach some files when sending the email in our applications. Moving forward, this little article will help us to attach the files directly from the FileUpload control without saving to a temporary location and send it as an attachment in the email.
Reportviewer control was introduced in VS 2005 and Asp.Net 2.0 used to build and display the reports on the Asp.net application. It comes with namespace Microsoft.ReportViewer.WebForms and mainly it is the component of SSRS to build the local reports and also display the reports published on the Reporting Server. In this article I will be summarizing what are the key features of Reportviewer control with samples.
JavaScript and doing client side manipulation is one of unavoidable things in any web based applications we develop. Sometimes, we may have requirements where we need to declare or register a JavaScript array from the asp.net code behind file. Read more..
SQL injection is an attack where an executable query is inserted or injected with the input data. The injected code will then gets executed with the application identity and hence causing the damage. Read more..
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15