Use custom error pages in ASP.NET
The tag in ASP.NET configuration files affects how error pages are managed in an ASP.NET application and whether developers can redirect users to their custom error pages when an exception
The tag in ASP.NET configuration files affects how error pages are managed in an ASP.NET application and whether developers can redirect users to their custom error pages when an exception
The httpRuntime tag in ASP.NET configuration files lets you determine several features of ASP.NET at the machine or site level, including the how ASP.NET uses multi-threading. Here’s the complete syntax
At times you want to keep a log of all the exception occurred in your application, including those that are correctly caught by a Catch block. At first you might
The httpRuntime tag in ASP.NET configuration files lets you determine several behaviors of ASP.NET at the machine or site, including the global value for script timeout. Here’s the complete syntax
This is a very handy and easily understandable code. There are two different methods, depending upon the type of data that is required as input to the functions: function CompareDatesOne(firstdate,seconddate){
We all know that the For-Next and While-Wend loops execute statement(s) as long as the loop condition is true. However, there is a difference between the two. A loop condition
If you run this statement In SQL Server Query Analyzer: EXEC master..xp_cmdshell ‘dir *.exe’ You will get the result as DOS DIR Command. Using this, you can run all DOS
The following functions are used to extract the character in the string to the left or to the right. Left(), Right() functions are not available in Javascript. function Left(str, n){
You may encounter a situation where you need to open a “Save As” dialogue box for downloading files of different types on to the client machine. You might have found