Diable Browser Back Button
I have gone mad for getting my browser back button disabled in one of my projects. And at last arrived at this solution: function disableBrowserBackBtn() { window.history.go(1) }...
View ArticleChange Focus for TextBoxes using Javascript
In most of the real time project there will be requirement to change focus of the TextBox from one to another dynamically, instead of clicking the TextBoxes. The ideal example in this case would be...
View ArticleBasic SQL System Stored Procedures to be known by every Developer
There are large number of System Stored Procedures. Here are few stored procedures that should be known by every developer who work with Databases. And these stored procedures will be very handy at...
View ArticleReseed Identity Column in a Table
Today in our web application we have to make a major release to production. Everything went fine but we have lot of test entries in the production. Our identity column of the User table increased from...
View ArticleText Formatting made Easy in ASP.NET
In one of my project there was an requirement to display the Phone Numbers formatted according to US Standards(eg: 123-456-7890).I initially thought I have to insert the '-' symbol at the index values....
View ArticlePrinter Friendly Button in JS
I was so pleased with Javascript. In an printer friendly version page if you wanna a Print button which will direct you for printing, then this is the simplest way.Here we go.EG: In the anchor tag just...
View ArticleAJAX implementation using POST method in .NET
Here is where the real Ajax is implementation happens. In fact the .Net framework itself supports the partial page posting using Update Panel and etc. But what actually happens here is, the whole...
View ArticleApplication Level Error Handling in .NET
There were many chances for the occurrence of error in a .NET web application. We can easily fetch those errors and handle the users in a friendly way with the Global.asax file.The event...
View ArticleImporting data to SQL Server from Excel file
After a very long gap of a month and half, I had some space for me to write some technical blog. This is all about exporting the Excel sheet to SQL Data source. You will need this in many instances to...
View ArticleCopy Generic Collection List in DotNet
After a very long time I am learning something new. It doesn't mean that I was not experimenting new things, but I haven't learned something new in DotNet Programming for past 2 months. Quite a big...
View ArticleSelect Multiple Table Columns with JOINS
In one of our project(a kind of ETL project), there was a requirement to map the a single table columns with multiple table column. I searched in many forums and finally from MSDN learned a new...
View ArticleHuge File Uploads in ASP.NET
After a month and half, bosome time to keep this going.There was an issue happening repeatedly, when we were trying to upload an image file with size 5MB through an File Upload Control in ASP.NET...
View ArticleIIS7:Create website using .NET
This can be achieved in two ways. Earlier in IIS6 and below we use System.DirectoryServices. Now the .NET 3 new .NET library Microsoft.Web.Administration allows us to manage IIS settings very...
View ArticleHow to consume RSS in ASP.NET 3.5
After a very long gap of routine development and coding of web applications, I found this to be more interesting, easy and fascinating for me(At the least to learn something new!). Straight away we can...
View Article