Articles
|
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.
Posted on 2/3/2011 @ 8:10 AM
By Suresh Kumar Goudampally
in ASP.Net
|
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
Posted on 1/10/2011 @ 8:25 AM
By Suresh Kumar Goudampally
in ASP.Net
|
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..
Posted on 1/6/2011 @ 6:57 AM
By Bala Murugan
in ASP.Net
|
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.
Posted on 12/30/2010 @ 7:32 AM
By Satheesh Babu B
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..
Posted on 12/23/2010 @ 8:11 AM
By Bala Murugan
in ASP.Net
|
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
Posted on 12/18/2010 @ 9:25 AM
By Suresh Kumar Goudampally
in ASP.Net
|
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.
Posted on 12/8/2010 @ 6:57 AM
By Bala Murugan
in ASP.Net
|
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.
Posted on 12/6/2010 @ 8:03 AM
By Suresh Kumar Goudampally
in ASP.Net
|
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..
Posted on 11/27/2010 @ 5:35 AM
By Satheesh Babu B
in ASP.Net
|
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..
Posted on 11/26/2010 @ 9:32 AM
By Bala Murugan
in ASP.Net
|
|