Differences of Session Sharing behavior in IE7 & IE8
By · CommentsIt’s always important for the developer to know what new browsers are coming up with, mainly popular browsers like Internet explorer & Firefox. In the recent release of Microsoft IE8 handling of session’s been extended for new instances of IE to match Firefox.In this article we will be explaining the Differences of Session sharing behavior in Internet explorer 7 and Internet explorer 8 and how to maintain consistency across these browsers.
Debugging ASP,JavaScript,VBScript in IE & Firefox
By · CommentsDuring development debugging plays an important role as it reduces our development efforts in fixing the bugs.In this article we will describe some of the techniques to help you with debugging the ASP, JavaScript,VBScript in Internet explorer and Firefox.
Validate asp.net FileUpload control using JavaScript.
By · CommentsThis article explains about file upload control validation in JavaScript. By default when the user selects invalid format using the file upload control, the server control will not clear the content automatically. using the below code we can check the file extension and if it is not valid file extension then the textbox is cleared. This happens on the client side only using JavaScript.
Custom paging in Data Grid using C#.net
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.