Author Archive
Custom paging in Data Grid using C#.net
Posted by: | CommentsPagination is a good technique used to improve the performance of the application and usability. But it’s always not suitable to use the built-in pagination approach of Data Grid, in that case we may require to write our own custom paging. In this article i will explain implementing custom paging using Link Buttons, in this approach we will write our paging logic in the stored procedure to improve the performance of the application.
Why Response.Write does not work with ‘Atlas’ Update Panel ?
Posted by: | CommentsHave you ever tried using Response.Write in combination with ‘Atlas’ Update panel? If not try using that. I am sure that it does not work. It’s always irritating when you get to know that basic things like Response.write, Response.buffer etc don’t work with the Powerful tool like Update Panel. In this article i will try to explain you why Response.Write does not work with Atlas Update Panel and more of alternative solution to come over this problem.
Data Pagination in the stored procedure
Posted by: | CommentsFirst of all why do we need to do our paging in the back end when all the data controls in ASP.NET provide paging technique? The answer is simple, to improve the performance of the application. In small applications you many not find the difference, but in big applications where thousand to millions records need to be retrieved, Data controls pagination takes 2 – 5 minutes which is not acceptable at all, and even you may get out of memory. So it’s always a good idea to have your paging mechanism on the backend. In this article i will explain the way how we can do our paging on backend by sending page Size & current Page.
How to Call a ASP.NET Web Service from ASP page
Posted by: | CommentsAfter the big success of ASP.NET every body is migrating their ASP application into .Net. But for large ASP applications it’s always difficult to go at one shot , so tendency will be to develop some part of the application first and then go to next part. When you have a web application with mixed technologies like .Net & Asp, it’s always important to share resources between both the technologies like using DOM objects in ASP.net & web services in ASP. But does sharing of these resources quite easy ?
I should say No, In this article i will explain the ways to call ASP.Net Web service.